-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.87 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.87 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
74
75
76
77
78
79
80
{
"name": "codebash",
"description": "a real-time competitive coding experience",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"coding",
"challenges",
"real-time",
"multiplayer"
],
"author": {
"name": "Team Mutiny"
},
"repository": "mutiny/codebash",
"contributors": [],
"bugs": {},
"directories": {
"lib": "src"
},
"engines": {
"node": ">= 6.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"build": "webpack",
"test": "yarn run standard --env mocha && yarn run mocha",
"lint": "yarn run standard --fix --env mocha ",
"start": "node src/",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"body-parser": "^1.17.1",
"bootstrap": "^3.3.7",
"compression": "^1.6.2",
"cors": "^2.8.3",
"css-loader": "^0.28.0",
"feathers": "^2.1.1",
"feathers-authentication": "^1.2.2",
"feathers-authentication-hooks": "^0.1.2",
"feathers-authentication-jwt": "^0.3.1",
"feathers-configuration": "^0.4.1",
"feathers-errors": "^2.6.3",
"feathers-hooks": "^2.0.0",
"feathers-hooks-common": "^3.0.0",
"feathers-mongodb": "^2.8.0",
"feathers-nedb": "^2.6.2",
"feathers-rest": "^1.7.2",
"feathers-socketio": "^1.6.0",
"helmet": "^3.5.0",
"jquery": "^3.2.1",
"mongodb": "^2.2.26",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"serve-favicon": "^2.4.2",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"mocha": "^3.3.0",
"standard": "^10.0.2"
},
"standard": {
"env": [
"jquery",
"mocha",
"node",
"es6"
]
}
}