-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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
{
"name": "storybook-html-starter",
"version": "1.0.0",
"description": "Storybook is an open source tool for developing UI components in isolation. This starter template uses only HTML - no JS framework required.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koakekuna/storybook-html-starter.git"
},
"keywords": [
"storybook"
],
"author": "Koa Kekuna",
"license": "ISC",
"bugs": {
"url": "https://github.com/koakekuna/storybook-html-starter/issues"
},
"homepage": "https://github.com/koakekuna/storybook-html-starter#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@storybook/addon-a11y": "^5.3.11",
"@storybook/addon-backgrounds": "^5.3.11",
"@storybook/addon-knobs": "^5.3.11",
"@storybook/addon-viewport": "^5.3.11",
"@storybook/html": "^5.3.10",
"@whitespace/storybook-addon-html": "^1.2.1",
"babel-loader": "^8.0.6",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2"
}
}