-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "travelapp",
"version": "1.0.0",
"description": "Travel App to return a weather report",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "wp --mode production",
"dev": "wp --mode development",
"server": "nodemon ./src/server/server.js",
"start": "node ./src/server/server.js",
"rebuild": "npm run build && npm run start"
},
"keywords": [],
"author": "Mark J Rawlins",
"license": "MIT",
"dependencies": {
"express": "^4.17.3",
"jest": "^27.5.1",
"node": "^17.7.2",
"node-fetch": "^2.6.7",
"path": "^0.12.7",
"process": "^0.11.10",
"webpack": "^5.72.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"clean-webpack-plugin": "^4.0.0",
"cors": "^2.8.5",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"dotenv": "^16.0.0",
"fast-sass-loader": "^2.0.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"mini-html-webpack-plugin": "^3.1.3",
"nodemon": "^2.0.15",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"webpack-merge": "^5.8.0",
"webpack-nano": "^1.1.1",
"webpack-plugin-serve": "^1.6.0",
"workbox-webpack-plugin": "^6.5.3"
}
}