forked from Sambego/storybook-state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "@carium/storybook-state",
"version": "2.1.0",
"description": "Manage state in storybook stories",
"main": "dist/index.js",
"scripts": {
"compile": "babel src --out-dir dist",
"test": "snyk test && jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carium-inc/storybook-state.git"
},
"keywords": [
"storybook",
"react-storybook",
"react"
],
"author": "Cameron Avelis",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sambego/storybook-state/issues"
},
"homepage": "https://github.com/Sambego/storybook-state#readme",
"typings": "lib/index.d.ts",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-dead-code-elimination": "^2.2.2",
"babel-plugin-transform-inline-environment-variables": "^0.2.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.9",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-traverse": "^6.26.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.2.0",
"jest": "^23.4.2",
"prop-types": "^15.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.4.2",
"snyk": "^1.298.1"
},
"dependencies": {
"@storybook/addons": "^6.5.15",
"@storybook/api": "^6.5.15",
"@storybook/components": "^6.5.15",
"@storybook/react": "^6.5.15",
"uuid": "^3.1.0"
}
}