-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.3 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.3 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
70
71
72
73
{
"name": "CodeOff",
"version": "1.0.0",
"description": "Mario kart meets coding challenges",
"main": "src/server/server.js",
"scripts": {
"start": "concurrently \"nodemon src/server/server.js\" \"nodemon src/services/code/server.js\"",
"test": "mocha --require test/helpers/setup.js",
"build": "webpack -p --config webpack.config.js --progress --profile --colors",
"build-w": "webpack -p --config webpack.config.js --progress --profile --colors --watch",
"dev": "concurrently \"npm run start\" \"npm run build-w\" ",
"prod": "concurrently \"node src/db/mock.js\" \"node src/server/server.js\" \"node src/services/code/server.js\"",
"cover": "nyc --reporter=lcov --reporter=text --reporter=html --require babel-register --extension .jsx npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oneoffcharacters/thesis.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/oneoffcharacters/thesis/issues"
},
"homepage": "https://github.com/oneoffcharacters/thesis#readme",
"dependencies": {
"auto-bind": "^0.1.0",
"axios": "^0.15.2",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"chance": "^1.0.4",
"crypto": "0.0.3",
"eslint": "^3.10.2",
"express": "^4.14.0",
"history": "^1.17.0",
"jq-console": "^2.13.2",
"jquery": "^3.1.1",
"jsonwebtoken": "^7.1.9",
"mongoose": "^4.6.8",
"morgan": "^1.7.0",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^3.0.0",
"socket.io": "^1.5.1",
"tmp": "0.0.30"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"enzyme": "^2.6.0",
"imports-loader": "^0.6.5",
"jest": "^17.0.0",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"nyc": "^8.4.0",
"react-addons-test-utils": "^15.3.2",
"sinon": "^1.17.6",
"socket.io-client": "^1.5.1",
"supertest": "^2.0.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}