-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 3.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "frontend-template",
"description": "Frontend application",
"version": "0.0.1",
"author": "[email protected]",
"license": "ISC",
"scripts": {
"start": "webpack serve --config config/webpack.dev.js",
"build": "npm run copy && npm run webpack-prod",
"webpack-prod": "webpack --config config/webpack.prod.js",
"copy": "cpx \".github/workflows/build-pipeline.yml\" dist -v -p",
"lint:ts": "eslint \"src/**/*\"",
"lint:fix": "eslint \"src/**/*\" --fix",
"lint:css": "stylelint \"./src/**/*.tsx\"",
"prettier": "prettier -c .",
"prettier-w": "prettier -w .",
"test": "jest",
"coverage": "jest --coverage --coverageReporters=lcov",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"lodash": "^4.17.20",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intl": "^5.15.8",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "7.12.1",
"@babel/preset-typescript": "7.12.7",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/react": "17.0.5",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.6",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-loader": "8.1.0",
"copy-webpack-plugin": "^6.4.0",
"css-loader": "^5.0.0",
"cpx": "^1.5.0",
"dotenv-webpack": "^6.0.0",
"eslint": "7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.1.0",
"jest": "^26.5.0",
"jest-sonar-reporter": "2.0.0",
"jest-styled-components": "^7.0.3",
"prettier": "^2.3.2",
"style-loader": "^2.0.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^26.4.3",
"typescript": "^4.1.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.2.0"
}
}