-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
103 lines (103 loc) · 3.43 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "parasol",
"version": "0.3.0",
"description": "A network graph exploration tool",
"scripts": {
"data": "cross-env NODE_ENV=local node docs/assets/data/paypal/convert.js",
"start": "cross-env NODE_ENV=local node docs/server.js",
"lint": "eslint src",
"webpack": "webpack --colors --progress --bail",
"precommit": "pretty-quick --staged",
"git-update": "git pull; git commit -am 'update parasol.js'; git push",
"build":
"rm build/js/main*.js; cross-env NODE_ENV=production npm run webpack",
"docs-sass":
"sass docs/assets/sass/material-kit.scss > docs/assets/css/material-kit.css",
"docs":
"yarn docs-sass; yarn build; cp build/js/parasol.js docs/assets/js/; yarn git-update",
"boilerplate":
"yarn build; git checkout boilerplate_release; cp build/js/parasol.js assets/js/parasol.js; yarn git-update; git checkout master",
"deploy": "yarn docs; yarn boilerplate"
},
"repository": {
"type": "git",
"url": "https://github.com/alx/parasol.git"
},
"keywords": ["react", "reactjs", "boilerplate", "mobx", "starter-kit"],
"author": "Alexandre Girard <[email protected]> (http://github.com/alx)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alx/parasol/issues"
},
"homepage": "http://alx.github.com/parasol",
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-addon-knobs": "^1.7.1",
"@kadira/storybook-addons": "^1.3.0",
"assets-webpack-plugin": "^3.5.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.14.3",
"prettier": "1.10.2",
"pretty-quick": "^1.4.1",
"react-hot-loader": "^3.0.0-beta.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"aframe": "^0.7.1",
"aframe-meshline-component":
"https://github.com/alx/aframe-meshline-component.git#unicode-fix",
"aframe-react": "^4.3.0",
"async": "^2.6.2",
"axios": "^0.16.1",
"babel-polyfill": "^6.26.0",
"bn.js": "^4.11.8",
"chart.js": "^2.7.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.0",
"eslint-loader": "^1.7.1",
"eslint-watch": "^3.1.0",
"eth-block-tracker": "^2.2.2",
"ethjs": "^0.3.0",
"ethjs-filter": "^0.1.5",
"ethjs-provider-http": "^0.1.6",
"file-saver": "^1.3.3",
"hoek": "^5.0.3",
"jss": "^6.3.0",
"mastodon": "^1.2.2",
"mastodon-api": "^1.3.0",
"material-ui": "^0.19.4",
"material-ui-upload": "^1.0.0",
"mobx": "^3.1.0",
"mobx-react": "^4.1.0",
"mobx-react-form": "^1.20.2",
"mobx-utils": "^3.2.2",
"moment": "^2.17.1",
"node-fetch": "^2.1.2",
"rc-slider": "^7.0.2",
"rc-tooltip": "^3.4.3",
"react": "^15.1.0",
"react-addons-shallow-compare": "^15.5.2",
"react-chartjs": "^0.8.0",
"react-chartjs-2": "^2.6.4",
"react-chartjs2": "^1.1.2",
"react-dom": "^15.1.0",
"react-sigma": "^1.2.17",
"react-spinner-material": "^1.0.11",
"react-tap-event-plugin": "^2.0.1",
"three": "^0.89.0",
"throttle-debounce": "^1.0.1"
}
}