-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "whack-a-mole",
"version": "0.1.0",
"description": "Whack a mole demo",
"author": "Unfold <[email protected]>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "5.x.x",
"npm": "3.8.x"
},
"repository": "unfold/whack-a-mole",
"scripts": {
"postinstall": "npm run build",
"build": "babel-node node_modules/.bin/webpack",
"lint": "eslint src/**/*.js",
"start": "babel-node src/server",
"serve": "nodemon -q -w src/server --exec babel-node src/server"
},
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "6.6.5",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-inline-environment-variables": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"body-parser": "1.15.0",
"classnames": "^2.2.3",
"compression": "^1.6.1",
"css-ease": "0.0.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"fastclick": "^1.0.6",
"file-loader": "^0.8.5",
"firebase": "^2.4.2",
"json-loader": "^0.5.4",
"lodash": "^4.0.0",
"node-fetch": "1.3.3",
"randomcolor": "^0.4.4",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-firebase": "^0.1.0",
"react-look": "^1.0.0-beta2",
"react-pure-render": "^1.0.2",
"svg-react-loader": "^0.3.3",
"webpack": "^1.12.13"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"babel-plugin-react-transform": "^2.0.0",
"babel-preset-react-hmre": "^1.0.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.15.0",
"nodemon": "^1.9.1",
"react-transform-catch-errors": "^1.0.1",
"react-transform-hmr": "^0.1.6",
"react-transform-render-visualizer": "^0.3.0",
"redbox-react": "^1.2.0",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.6.0"
}
}