-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.21 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
45
46
47
48
49
50
51
52
{
"name": "spark-starter-html",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"develop": "webpack-dev-server"
},
"lint-staged": {
"*.scss": [
"stylelint --fix",
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Spark Dev Team <[email protected]>",
"license": "MIT",
"devDependencies": {
"@sparkdesignsystem/spark": "^18.0.2",
"css-loader": "^3.6.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"handlebars": "^4.7.6",
"handlebars-webpack-plugin": "^2.2.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"sass-loader": "^8.0.2",
"stylelint": "^13.7.2",
"stylelint-scss": "^3.18.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}