-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "democracyos-ui",
"version": "0.1.10",
"description": "ui framework",
"main": "dist/index.js",
"scripts": {
"clean-dist": "rm -rf ./dist",
"build": "npm run clean-dist && npx webpack",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/democracyos/ui.git"
},
"keywords": [
"react",
"ui",
"storybook"
],
"author": "Democracy OS team",
"license": "ISC",
"bugs": {
"url": "https://github.com/democracyos/ui/issues"
},
"homepage": "https://github.com/democracyos/ui#readme",
"devDependencies": {
"@storybook/addon-info": "^3.4.10",
"@storybook/addon-notes": "^3.4.10",
"@storybook/react": "^3.2.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^5.4.0",
"eslint-config-democracyos": "^2.0.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"styled-components": "^1.0.10"
},
"peerDependencies": {
"react": "^15.x",
"styled-components": "^1.x"
},
"dependencies": {
"prop-types": "^15.6.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}