-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.27 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
{
"name": "starter-html-sass-js-webpack",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "webpack --mode=development",
"watch": "webpack --mode=development --watch",
"bundle": "npm install && npm run watch",
"production": "cross-env NODE_ENV=production webpack --mode=production",
"lint-sass": "sass-lint -v -q --format=compact",
"lint-js": "eslint --ext .js src/js/"
},
"author": "Fransy",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"ajv": "^6.10.0",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^3.2.0",
"lint": "^0.7.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"retinajs": "^2.1.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^2.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com/"
}
}