-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
{
"name": "@alethio/ui",
"version": "2.0.0-beta.0",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Alethio React component library",
"scripts": {
"build": "npm run clean && ttsc -p ./tsconfig.build.json",
"clean": "rimraf ./lib",
"watch": "ttsc -p ./tsconfig.build.json --watch",
"lint": "tslint -c ./tslint.prod.json -p ./tsconfig.build.json",
"prepare": "npm run build",
"test": "cd test && npm install && npm run test",
"storybook": "start-storybook -s ./public",
"storybook-dist": "build-storybook -c .storybook -o storybook-dist -s ./public --quiet"
},
"keywords": [],
"author": "Alexandru Ciuca <[email protected]>",
"license": "MIT",
"homepage": "https://aleth.io",
"repository": {
"type": "git",
"url": "https://github.com/Alethio/ui"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-notes": "^5.1.9",
"@storybook/addon-storysource": "^5.1.9",
"@storybook/addon-viewport": "^5.1.9",
"@storybook/react": "^5.1.9",
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"@types/react-is": "^16.3.0",
"@types/react-transition-group": "^2.0.11",
"@types/storybook__addon-info": "^4.1.2",
"@types/storybook__react": "^4.0.2",
"babel-loader": "^8.0.6",
"bignumber.js": "^8.0.1",
"husky": "^1.0.0-rc.9",
"mobx": "^4.3.0",
"mobx-react": "^5.1.2",
"react": "^16.8.6",
"react-docgen-typescript-loader": "^3.1.0",
"react-dom": "^16.8.6",
"react-scripts": "^3.0.1",
"rimraf": "^2.6.2",
"styled-components": "^3.4.2",
"ts-loader": "^6.0.4",
"tslib": "^1.9.3",
"tslint": "^5.18.0",
"ttypescript": "^1.5.10",
"typescript": "^3.7.5",
"typescript-plugin-styled-components": "^1.4.3",
"typescript-styled-plugin": "^0.10.0",
"typescript-tslint-plugin": "^0.1.0"
},
"dependencies": {
"@puzzl/browser": "^1.0.0-beta.1",
"@puzzl/core": "^1.0.0-beta.1",
"@types/color": "^3.0.0",
"color": "3.1.2",
"datetime-difference": "^1.0.1",
"formik": "2.0.6",
"prop-types": "^15.7.2",
"react-popper": "^1.0.2",
"react-transition-group": "^2.4.0",
"react-uid": "^2.2.0"
},
"peerDependencies": {
"mobx": ">=4.3.0",
"mobx-react": ">=5.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^3.4.2"
}
}