forked from HR-FEC-BLAZARS/Project-Greenfield
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "project-greenfield",
"version": "1.0.0",
"engines": {
"node": "12.x"
},
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"start": "node ./server/index.js",
"dev": "webpack -d --watch & nodemon ./server/index.js",
"build": "webpack -p",
"test": "jest"
},
"dependencies": {
"axios": "^0.19.2",
"compression": "^1.7.4",
"focus-trap-react": "^7.0.1",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"terser-webpack-plugin": "^3.0.6",
"express": "^4.17.1",
"node-sass": "^4.14.1",
"sass": "^1.26.9"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.1",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"css-loader": "^3.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"express": "^4.17.1",
"jest": "^26.1.0",
"node-sass": "^4.14.1",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}