-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.74 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ctf-game",
"version": "1.0.0",
"description": "Fast-paced hot seat multiplayer game written in modern JavaScript.",
"main": "src/index.js",
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:server": "babel src --ignore src/client --out-dir dist --source-maps --minified",
"build:client": "webpack -p",
"lint": "eslint src",
"start": "NODE_ENV=production node dist/index.js",
"start:dev": "NODE_ENV=development nodemon --exec babel-node -- src/index.js",
"test": "mocha --compilers js:babel-core/register --require test/index.js --recursive",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crisu83/ctf-game.git"
},
"keywords": [],
"author": "Christoffer Niska <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/crisu83/ctf-game/issues"
},
"homepage": "https://github.com/crisu83/ctf-game#readme",
"dependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.2",
"babel-plugin-module-alias": "^1.2.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chance": "^0.8.0",
"clean-webpack-plugin": "^0.1.8",
"css-loader": "^0.23.1",
"eslint": "^2.2.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.0.0",
"express": "^4.10.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"foundation-sites": "^6.1.2",
"html-webpack-plugin": "^2.9.0",
"immutable": "^3.7.6",
"imports-loader": "^0.6.5",
"lodash": "^4.5.0",
"newrelic": "^1.25.3",
"node-sass": "^3.4.2",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"sass-loader": "^3.1.2",
"scss-loader": "0.0.1",
"serve-webpack-client": "0.0.4",
"shortid": "^2.2.4",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.13",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.7.1",
"webpack-livereload-plugin": "^0.5.3",
"winston": "^2.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-immutable": "^1.5.3",
"mocha": "^2.4.5",
"nodemon": "^1.8.1",
"v8-profiler": "^5.6.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"plugins": [
[
"babel-plugin-module-alias",
[
{
"src": "./src/shared",
"expose": "shared"
}
]
]
]
}
}