This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.63 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
{
"name": "@dump247/storybook-state",
"version": "1.6.1",
"description": "Manage component state in storybook stories.",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "rm -rf dist/ && cd src/ && babel index.js register.js constants.js --out-dir ../dist",
"dist": "npm run build && npm publish",
"test": "jest",
"storybook": "npm run build && start-storybook -p 9001 -c .storybook"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dump247/storybook-state.git"
},
"keywords": [
"react",
"storybook"
],
"author": "Cory Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dump247/storybook-state/issues"
},
"homepage": "https://github.com/dump247/storybook-state#readme",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@storybook/addons": "^3.2.16",
"prop-types": "^15.5.0",
"react": "^15.5.0 || ^16.0.0"
},
"dependencies": {
"react": "^16.6.0",
"react-json-view": "^1.13.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-info": "^5.0.11",
"@storybook/react": "^5.0.11",
"@types/storybook__react": "^4.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.8.0",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
}
}