generated from badabam/quiz-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "quiz-app",
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"prettier:write": "prettier --write .",
"stylelint": "npx stylelint \"**/*.css\"",
"test": "htmlhint --ignore ./build/**/* && prettier --check . && npm run stylelint && eslint --cache --fix src",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,css,html,md}": "prettier --write",
"*.js": "eslint --cache --fix",
"*.css": "stylelint",
"*.html": "htmlhint"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@storybook/addon-a11y": "6.2.8",
"@storybook/addon-actions": "6.2.8",
"@storybook/addon-design-assets": "6.2.8",
"@storybook/addon-essentials": "6.2.8",
"@storybook/addon-links": "6.2.8",
"@storybook/html": "6.2.8",
"babel-loader": "8.2.2",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"htmlhint": "0.14.2",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"snowpack": "3.0.11",
"stylelint": "13.9.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"vite": "2.1.5"
},
"license": "ISC",
"author": "",
"contributors": [
{
"name": "Lene Frei"
},
{
"name": "Jerry Erbs"
}
]
}