-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
{
"name": "cargo-react",
"version": "0.0.1",
"description": "",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook"
},
"author": "Bikash Dash <[email protected]> (https://bikash.me/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.2",
"@types/storybook-addon-jsx": "^5.4.3",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "4.1.8",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.7.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-docgen-typescript-loader": "^3.1.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.8.6",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^16.8.6",
"rollup": "^1.16.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.21.2",
"storybook-addon-jsx": "^7.1.2",
"styled-components": "^4.3.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"files": [
"build"
],
"dependencies": {}
}