-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "sbrw-server",
"version": "0.1.1",
"description": "SBRW Server (Beta)",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js --fix",
"start": "node index.js",
"start-dev": "nodemon -r dotenv/config index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaditya/sbrw-server.git"
},
"keywords": [
"NFSW",
"SBRW",
"Need",
"For",
"Speed",
"Race",
"World",
"Multiplayer"
],
"author": "Aaditya Chakravarty",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/aaditya/sbrw-server/issues"
},
"homepage": "https://github.com/aaditya/sbrw-server#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"body-parser-xml": "^2.0.0",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.10",
"morgan": "^1.10.0",
"uuid": "^8.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4",
"pre-commit": "^1.2.2",
"sinon": "^9.0.3"
},
"pre-commit": [
"lint"
]
}