-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "quiz-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run htmlhint && npm run prettier:write",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"htmlhint": "npx htmlhint '**/*.html'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hennifant/quiz-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hennifant/quiz-app/issues"
},
"homepage": "https://github.com/hennifant/quiz-app#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@storybook/addon-actions": "^6.4.13",
"@storybook/addon-essentials": "^6.4.13",
"@storybook/addon-links": "^6.4.13",
"@storybook/html": "^6.4.13",
"babel-loader": "^8.2.3",
"htmlhint": "^1.1.1",
"husky": "^7.0.0",
"prettier": "2.5.1"
}
}