-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "nertivia-server",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "tsc -p .",
"start": "node ./build/index.js",
"start:build": "npm run build && node ./build/index.js",
"dev": "nodemon src/index.ts",
"test": "npm run build && mocha tests/test.js --timeout 30000 --reporter spec --exit",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"socket.io-client": "^4.4.0",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@brecert/flakeid": "^2.0.1",
"@socket.io/redis-adapter": "^7.1.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.3",
"pg": "^8.7.1",
"redis": "^4.0.0",
"socket.io": "^4.4.0"
}
}