-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.5 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
83
84
85
86
87
{
"name": "control-panel",
"version": "0.1.0",
"private": true,
"main": "src/index.tsx",
"dependencies": {
"bootstrap": "^4.5.2",
"lodash": "^4.17.20",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "webpack-dev-server --config config/webpack/webpack.config.js --open",
"build": "webpack --config config/webpack/webpack.prod.config.js",
"build:dev": "webpack --config config/webpack/webpack.config.js --display-modules",
"test": "npx jest",
"lint": "npx tslint 'src/**/*.{ts,tsx,js}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/enzyme": "^3.10.7",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.161",
"@types/node": "^12.12.67",
"@types/react": "^16.9.51",
"@types/react-bootstrap": "^0.32.24",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.6",
"@types/redux": "^3.6.0",
"@types/redux-mock-store": "^1.0.2",
"@types/redux-thunk": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.11.0",
"fs": "0.0.1-security",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.5.3",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-addons-test-utils": "^15.6.2",
"react-bootstrap": "^1.3.0",
"redux-mock-store": "^1.5.4",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"ts-jest": "^26.4.1",
"ts-lint": "^4.5.1",
"ts-loader": "^8.0.4",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^4.0.3",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}