-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "rythm",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "rimraf dist && npx tsc",
"test": "jest",
"lint": "npx eslint .",
"prestart": "npm run build",
"start": "node dist/app.js",
"preserve": "npm run build && npm run start",
"serve": "npm run build && concurrently \"npm:watch\" \"npm:start:dev\"",
"start:dev": "nodemon dist/app.js",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Luca-Blight/Rythm.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Luca-Blight/Rythm/issues"
},
"homepage": "https://github.com/Luca-Blight/Rythm#readme",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"axios": "^1.6.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"http": "^0.0.1-security",
"jest": "^29.7.0",
"mongoose": "^8.0.1",
"socket.io": "^4.7.2",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/jest": "^29.5.8",
"@types/mongoose": "^5.11.97",
"@types/supertest": "^2.0.16",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"typescript": "^5.2.2"
}
}