forked from devragj/RecordLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.61 KB
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
{
"name": "recordlib",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.4.3",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"eslint-utils": "^1.4.2",
"normalizr": "^3.4.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"scripts": {
"watch": "webpack --progress -d --config webpack.config.js --watch",
"build": "webpack --progress -p --mode=production --config webpack.config.js",
"test": "jest",
"eject": "react-scripts eject"
},
"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/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"jest": "^25.1.0",
"jsdoc": "^3.6.3",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^1.0.0",
"webpack": "^4.41.5",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^3.3.9"
},
"jest": {
"moduleNameMapper": {
"frontend(.*)$": "<rootDir>/frontend$1"
}
}
}