-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "learn-js-mathsprintgame",
"version": "1.0.0",
"description": "learn-js-mathsprintgame",
"private": true,
"scripts": {
"dev": "webpack serve --open",
"build": "npm run lint && webpack --mode production",
"deploy": "gh-pages -d build",
"predeploy": "npm run build",
"lint": "npm run lint:eslint && npm run lint:stylelint && npm run lint:prettier",
"lint:eslint": "eslint --fix --ext \".js\" --ignore-path .eslintignore .",
"lint:stylelint": "stylelint --fix \"**/*.{css,html}\" --ignore-path .stylelintignore",
"lint:prettier": "prettier --write \"**/*.{js,css,html,md}\" --ignore-path .prettierignore",
"lint:prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{css,html}": "stylelint --fix",
"*.{js,css,html,md}": "prettier --write"
},
"author": "Gurov Dmitriy",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"babel-loader": "^8.2.3",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"gh-pages": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"postcss-html": "^1.3.0",
"prettier": "2.5.1",
"stylelint": "^14.0.1",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"dependencies": {}
}