-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.91 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "smartgrid",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "npm run dev",
"sg": "node ./smart-grid-config.js",
"dev": "webpack-dev-server --mode=development",
"build": "webpack --mode=production",
"lint:js": "eslint ./src/scripts --ext .js",
"lint:scss": "stylelint ./src/styles/**/*.scss --syntax scss",
"lint": "npm run lint:js && npm run lint:scss"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.10.4",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"chokidar": "^3.3.1",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.1.1",
"css-mqpacker": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"exports-loader": "^0.7.0",
"file-loader": "^3.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^5.1.0",
"imagemin-webp-webpack-plugin": "^3.3.1",
"imports-loader": "^0.8.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"postcss-csso": "^3.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"sass-loader": "^7.3.1",
"shopify-liquid": "^1.9.1",
"smart-grid": "^2.1.2",
"sort-css-media-queries": "^1.5.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-scss": "^3.14.2",
"svg-sprite-loader": "^4.2.1",
"svgo-loader": "^2.2.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}