-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"main": "index.js",
"scripts": {
"start": "node src/server/index.js",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack server --config webpack.dev.js",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"html2canvas": "^1.3.2",
"jspdf": "^2.4.0",
"node-fetch": "^2.6.1",
"uuid": "^8.3.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.6",
"@webpack-cli/serve": "^1.6.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.7",
"html-webpack-plugin": "^3.2.0",
"jest": "^27.3.1",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"sass": "^1.42.1",
"sass-loader": "10.1",
"style-loader": "^2.0.0",
"webpack-dev-server": "^3.7.2",
"workbox-webpack-plugin": "^6.3.0"
}
}