-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 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
{
"name": "r2",
"version": "0.0.1",
"description": "front-end for r2",
"scripts": {
"clean": "rimraf build",
"build:webpack": "webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "cross-env NODE_PATH='src' node devServer.js",
"debug": "cross-env NODE_PATH='src' echo 'Nothing? `npm install -g iron-node`' && iron-node src/debug.js",
"flow": "flow",
"lint": "eslint src",
"pretest": "npm run lint",
"test": "cross-env NODE_PATH='src' babel-node src/test.js | faucet",
"watch": "watch \"clear && npm run test -s\" src",
"updtr": "updtr"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Mark Sauter",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"cheerio": "^0.22.0",
"clear-cli": "^1.0.1",
"cross-env": "^3.1.4",
"deep-freeze": "0.0.1",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"faucet": "^0.0.1",
"fela-plugin-validator": "^4.2.5",
"fela-preset-web": "^4.2.5",
"jsdom": "^9.11.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "next",
"redbox-react": "^1.3.3",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"rimraf": "^2.5.4",
"tape": "^4.6.3",
"updtr": "^0.2.3",
"watch": "^1.0.2",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.0"
},
"dependencies": {
"express": "^4.14.1",
"fela": "^4.2.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-fela": "^4.2.5",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-stamp": "^0.6.0",
"redux": "^3.6.0"
}
}