-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 874 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
{
"name": "weather-app",
"version": "1.0.0",
"description": "Simple weather app that uses async javascript.",
"main": "dist/js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js --mode=production && sass src/style/main.scss dist/stylesheet.css --style compressed",
"build-dev": "webpack --config webpack.config.js && sass src/style/main.scss dist/stylesheet.css",
"lint": "npx eslint . && npx stylelint \"**/*.{css,scss}\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"sass": "^1.26.8",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}