-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "shri-2020",
"version": "1.0.0",
"description": "Shri Moscow 2020",
"main": "index.js",
"author": "Gerasin Ivan <[email protected]>",
"license": "MIT",
"scripts": {
"start": "yarn build && webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"commit": "git-cz"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"engines": {
"node": ">=12.4.0",
"npm": ">=6.9.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./commitizen.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './commitlint.js'",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.scss": [
"prettier --write",
"stylelint --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"autoprefixer": "^9.7.3",
"commitizen": "^4.0.3",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.1",
"cz-customizable": "^6.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^8.0.0",
"stylelint": "^12.0.0",
"stylelint-config-prettier": "^7.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-prettier": "^1.1.1",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {}
}