-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "sassy",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean:build": "rimraf ./build",
"webpack": "webpack --config ./config/webpack.config.js",
"webpack:dev": "webpack-dev-server --config ./config/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:js": "eslint . -c ./config/.eslintrc.json",
"lint:scss": "stylelint **/*.scss --config ./config/.stylelintrc.json",
"lint": "npm run lint:js & npm run lint:scss",
"start": "npm run clean:build && npm run webpack:dev"
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.1.1",
"stylelint-scss": "^2.1.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.2"
}
}