-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "travel-planner",
"version": "1.0.0",
"description": "App to put together info about your trip",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node src/server/server.js",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack-dev-server --config webpack.dev.js --open"
},
"keywords": [
"geonames",
"weatherbit",
"pixabay"
],
"author": "Alexandra Baturina",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.7.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.7.0",
"node-sass": "^9.0.0",
"sass-loader": "^13.2.0",
"serialize-javascript": ">=3.1.0",
"style-loader": "^1.2.1",
"supertest": "^4.0.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.21.2",
"mini-css-extract-plugin": "^2.7.2",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"terser-webpack-plugin": "^3.0.3",
"workbox-webpack-plugin": "^6.5.4"
}
}