-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.22 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
{
"name": "@starboard/starboard-ui",
"version": "8.0.0",
"author": "Daiwei Lu <daiweilu123@gmail.com> (http://daiwei.lu)",
"license": "MIT",
"engines": {
"node": "6.3.1"
},
"main": "./webpack-assets.json",
"files": [
"public",
"shared",
"webpack-assets.json"
],
"devDependencies": {
"assets-webpack-plugin": "3.4.0",
"axios": "0.12.0",
"babel-core": "6.14.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.16.0",
"bluebird": "3.4.6",
"classnames": "2.2.5",
"convict": "1.4.0",
"css-loader": "0.25.0",
"eslint": "3.6.1",
"eslint-config-d6u": "1.2.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"firebase-tools": "3.0.7",
"greenkeeper-postpublish": "^1.0.0",
"http-server": "0.9.0",
"mixpanel-browser": "2.9.14",
"node-sass": "3.10.1",
"nprogress": "0.2.0",
"onchange": "3.0.2",
"ramda": "0.22.1",
"react": "15.3.2",
"react-addons-shallow-compare": "15.3.2",
"react-dnd": "2.1.4",
"react-dnd-html5-backend": "2.1.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"react-router-redux": "4.0.6",
"react-virtualized": "7.24.3",
"redux": "3.6.0",
"redux-logger": "2.6.1",
"redux-promise-middleware": "4.0.0",
"redux-thunk": "2.1.0",
"reselect": "2.5.4",
"rx": "4.1.0",
"sass-loader": "4.0.2",
"socket.io-client": "1.4.8",
"style-loader": "0.13.1",
"svg-react-loader": "0.3.7",
"updeep": "0.16.1",
"validate.js": "0.10.0",
"webpack": "1.13.2"
},
"scripts": {
"clean": "rm -rf webpack-assets.json public",
"lint": "eslint src *.js",
"watch:lint": "npm run lint -s; onchange 'src/**/*.js' '*.js' -v -- npm run lint -s",
"test": "",
"check": "npm run lint && npm test",
"build:js": "webpack",
"build": "npm run clean && npm run build:js -- --bail",
"watch:build": "npm run build:js -- -w",
"start": "http-server ./public -p 10010",
"preversion": "npm run check && npm run build",
"postversion": "git push && git push --tags",
"postpublish": "greenkeeper-postpublish"
}
}