forked from Danny-Robinson/bt-bingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
{
"name": "vanilla-react-bingo",
"version": "1.0.0",
"description": "React learning with bingo",
"main": "index.html",
"scripts": {
"start": "npm run build && node prodServer.js",
"build": "webpack --config webpack.config.prod.js --progress --profile --colors",
"dev": "node devServer.js",
"test": "NODE_ENV=test mocha './src/**/*.spec.js' --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danny-Robinson/vanilla-react-bingo.git"
},
"keywords": [
"node",
"react",
"express",
"hot-loading",
"webpack-hot-middleware",
"babel6",
"eslint"
],
"author": "Vasily Shelkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/VasilyShelkov/React-Hot-Dev-Starter/issues"
},
"homepage": "https://github.com/VasilyShelkov/React-Hot-Dev-Starter#readme",
"dependencies": {
"babel-polyfill": "^6.9.1",
"bootstrap": "^4.0.0-alpha.2",
"express": "^4.14.0",
"history": "^3.0.0",
"mongodb": "^2.2.24",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-router": "^2.6.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"deep-freeze": "0.0.1",
"enzyme": "^2.4.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"eventsource-polyfill": "^0.9.6",
"extend": "^3.0.0",
"jsx-chai": "^4.0.0",
"mocha": "^2.5.3",
"redbox-react": "^1.2.10",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2"
}
}