This repository has been archived by the owner on Sep 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.88 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": "wave-ui",
"version": "1.0.0-alpha.1",
"description": "A set of ReactJS components inspired by NearIT platform design",
"keywords": [
"react",
"reactjs",
"nearit"
],
"author": {
"name": "Mattia Panzeri",
"email": "mattia.panzeri93@gmail.com",
"url": "https://github.com/panz3r"
},
"contributors" : [
{
"name": "Alessandro Colleoni",
"email": "colleoni.al@gmail.com",
"url": "https://github.com/bluecco"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nearit/wave-ui"
},
"bugs": {
"url": "https://github.com/nearit/wave-ui/issues"
},
"homepage": "https://github.com/nearit/wave-ui#readme",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"lint": "standard src/",
"typecheck": "flow check src/",
"validate": "run-s lint typecheck",
"storybook:start": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs",
"build:js": "babel src/ -d dist/ --ignore spec.js,story.js",
"build:flow": "flow-copy-source -v -i '**/*.{story,spec}.js' src/ dist/",
"prebuild": "npm run clean",
"build": "run-s build:*",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@storybook/addon-info": "^3.1.6",
"@storybook/addon-knobs": "^3.1.6",
"@storybook/react": "^3.1.6",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"flow-bin": "^0.48.0",
"flow-copy-source": "^1.1.0",
"npm-run-all": "^4.0.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"rimraf": "^2.6.1",
"standard": "*"
},
"peerDependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"dependencies": {
"react-primitives": "^0.4.3",
"styled-components": "^2.1.2"
}
}