-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "relate-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"copy-local-relate": "cp ../relate/dist/index.js ./node_modules/relate-js/dist/index.js",
"build": "webpack --inline --config ./webpack.config.js",
"startDev": "npm run build && node build/index",
"startProd": "npm run build && NODE_ENV=production node build/index",
"start": "npm run startDev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.9.1",
"lodash.foreach": "^4.3.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^4.4.5",
"redux-thunk": "^2.1.0",
"relate-js": "^0.5.9"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"benchmark": "^2.1.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"webpack": "^1.13.1",
"webpack-node-externals": "^1.2.0"
}
}