-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.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
{
"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 serve --config webpack.dev.js --open"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"setupFilesAfterEnv": [
"./_test_/setupTests.js"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"chokidar": "^3.5.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^2.6.1",
"regenerator-runtime": "^0.13.7",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"whatwg-fetch": "^3.6.2",
"workbox-webpack-plugin": "^6.1.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.4",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^6.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.4",
"webpack-dev-server": "^3.7.2"
}
}