-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·40 lines (40 loc) · 1.06 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
{
"name": "example-project",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node src/server/index.js",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack-dev-server --config webpack.dev.js --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"validator": "^13.1.1",
"webpack-cli": "^3.3.5"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.44.1",
"webpack-dev-server": "3.11.0",
"workbox-webpack-plugin": "^5.1.3"
}
}