-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.05 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
{
"name": "travel-app-capstone",
"version": "1.0.0",
"description": "Travel app that obtains a desired trip location / data from the user and displays the weather/image of the location using information from external API's.",
"scripts": {
"test": "jest",
"start": "node src/server/server.js",
"build-dev": "webpack-dev-server --config webpack.dev.js --watch",
"build-prod": "webpack --config webpack.prod.js"
},
"author": "Trent Schneweis",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"html-webpack-plugin": "^4.3.0",
"postcss-loader": "^3.0.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"cors": "^2.8.5",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"style-loader": "^1.2.1",
"webpack-dev-server": "^3.10.3",
"workbox-webpack-plugin": "^5.1.3"
}
}