-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 864 Bytes
/
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": "weather-app",
"version": "1.0.0",
"description": "Weather SPA with Node.js & express",
"engines": {
"node": "10.x"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js & npm run watch:scss",
"build": "webpack --config webpack.config.js",
"compile:scss": "node-sass ./src/scss/*.scss -o ./public/styles",
"watch:scss": "node-sass ./src/scss/*.scss -o ./public/styles --watch"
},
"dependencies": {
"axios": "^0.19.0",
"express": "^4.17.1",
"pug": "^2.0.4"
},
"devDependencies": {
"dotenv": "^8.1.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8"
},
"repository": {
"type": "git",
"url": "https://github.com/Hollister009/weather-app"
},
"author": "Andrew Zhukevych",
"license": "ISC"
}