forked from joseferben/bfbc2-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.54 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.54 KB
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
{
"name": "bfbc2-stats",
"version": "0.0.1",
"description": "Stats page for Battlefield Bad Company 2",
"main": "index.js",
"scripts": {
"start": "npm run dist-client && npm run start-backend",
"start-dev": "npm run start-backend & npm run start-client-dev",
"test-all": "npm run test-server && npm run test-client",
"dist-client": "./node_modules/webpack/bin/webpack.js -p --config webpack.config.js",
"test-server": "./node_modules/.bin/mocha */test --compilers js:babel-core/register ",
"test-client": "npm run bundle-client-tests && npm run run-client-tests",
"run-client-tests": "./node_modules/mocha/bin/mocha app/tests.js",
"bundle-client-tests": "./node_modules/webpack/bin/webpack.js --config webpack.test.config.js ",
"start-backend": "node ./server/server.js",
"start-client-dev": "./node_modules/.bin/webpack-dev-server --config webpack.dev.config.js --inline --hot --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerben/bfbc2-stats.git"
},
"author": "DU4",
"license": "MIT",
"bugs": {
"url": "https://github.com/jerben/bfbc2-stats/issues"
},
"homepage": "https://github.com/jerben/bfbc2-stats#readme",
"dependencies": {
"axios": "^0.15.3",
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"bootstrap-loader": "^2.0.0-beta.12",
"bootstrap-sass": "^3.3.7",
"connect": "^3.2.0",
"css-loader": "^0.25.0",
"expect.js": "^0.3.1",
"expose-loader": "^0.7.1",
"file-loader": "^0.9.0",
"flux": "^3.1.2",
"imports-loader": "^0.6.5",
"jquery": "^3.1.1",
"js-yaml": "^3.3.0",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"mysql": "^2.13.0",
"node-sass": "^3.10.1",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"resolve-url-loader": "^1.6.0",
"riot": "^3.1.1",
"riot-compiler": "^3.1.4",
"riot-loader": "^1.0.0",
"riot-route": "^3.1.1",
"riotjs-loader": "^3.0.0",
"round10": "^1.0.3",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"swagger-tools": "0.10.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"devDependencies": {
"webpack-dev-server": "^1.16.2"
}
}