-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1009 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1009 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"types": "tsc",
"dev": "concurrently --kill-others \"npm run start\" \"npm run types\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-comp/server.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/code-comp/server/issues"
},
"homepage": "https://github.com/code-comp/server#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs-extra": "^10.1.0",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.11.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemon": "^1.19.2",
"concurrently": "^7.5.0",
"nodemon": "^2.0.20",
"typescript": "^4.8.4"
}
}