-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
{
"name": "countsomething",
"version": "0.1.0",
"description": "count items in stores per day",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/georgs/countsomething.git"
},
"scripts": {
"start": "node server.js",
"dev": "DEBUG=true node server.js",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
"check": "npm run lint && npm run test",
"build": " ",
"preversion": "npm run clean && npm run check",
"version": "npm run build",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build"
},
"author": "Georg Schelkshorn <[email protected]> (https://github.com/georgs)",
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.4.0",
"css-loader": "^0.18.0",
"eslint": "^1.7.3",
"eslint-config-airbnb": "0.1.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"history": "^1.12.5",
"isparta": "^3.1.0",
"jsdom": "^7.0.2",
"mocha": "*",
"mocha-jsdom": "^1.0.0",
"morgan": "^1.6.1",
"proxyquire": "^1.7.3",
"react-addons-test-utils": "^0.14.0",
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"redux-devtools": "^3.0.0-beta-3",
"redux-devtools-dock-monitor": "^1.0.0-beta-3",
"redux-devtools-log-monitor": "^1.0.0-beta-3",
"redux-immutable-state-invariant": "^1.1.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
},
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"react-router": "^1.0.0-rc3",
"react-tap-event-plugin": "^0.2.1",
"redux": "^3.0.4",
"redux-logger": "^2.0.4",
"redux-pouchdb": "0.0.5",
"redux-promise": "^0.5.0",
"redux-thunk": "^1.0.0",
"material-ui": "^0.13.4",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7"
}
}