-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "travplan-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node ./src/server/server.js",
"build": "webpack --mode production --config ./webpack.prod.js",
"build-dev": "webpack-dev-server --config webpack.dev.js --open",
"build-prod": "webpack --config webpack.prod.js"
},
"engines": {
"node": "12.16.3"
},
"author": "Deepa Subramanian",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"image-webpack-loader": "^6.0.0",
"install": "^0.13.0",
"node-sass": "^4.14.1",
"npm": "^6.14.11",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"resolve-url-loader": "^3.1.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^3.0.6",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"body-parser": "^1.19.0",
"chokidar": "^3.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.9.0",
"moment": "^2.27.0",
"regenerator-runtime": "^0.13.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}