-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 2.25 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
{
"name": "@alethio/explorer-ui",
"version": "2.0.0-dev.0",
"description": "React components usable by Alethio Explorer plugins",
"scripts": {
"build": "npm run clean && tsc -p ./tsconfig.build.json && npm run lint",
"clean": "rimraf ./lib",
"watch": "tsc -p . --watch",
"lint": "tslint -c ./tslint.prod.json -p ./tsconfig.build.json",
"prepare": "npm run build",
"storybook": "start-storybook -s ./node_modules/@alethio/ui/public",
"storybook-dist": "build-storybook -c .storybook -o storybook-dist -s ./node_modules/@alethio/ui/public --quiet"
},
"keywords": [],
"author": "Alexandru Ciuca <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alethio/explorer-ui"
},
"devDependencies": {
"@alethio/cms": "^1.0.0-beta.11",
"@alethio/ui": "^2.0.0-dev.13",
"@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/node": "^10.17.14",
"@types/qrcode": "^1.2.0",
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"@types/react-router-dom": "^4.2.6",
"@types/storybook__addon-info": "^4.1.2",
"@types/storybook__react": "^4.0.2",
"husky": "^1.3.1",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.7",
"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",
"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",
"bignumber.js": "^8.1.1",
"qrcode": "^1.2.2"
},
"peerDependencies": {
"@alethio/ui": ">= 2.0.0-dev.9",
"mobx": ">= 5.9.4",
"mobx-react": ">= 5.4.3",
"plugin-api": "*",
"react": ">= 16.8.6",
"react-dom": ">= 16.8.6",
"styled-components": ">= 3.4.2"
}
}