-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1001 Bytes
/
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
{
"name": "collaborative-server",
"version": "1.0.0",
"description": "The collaborative server for the jjodel platform.",
"main": "src/app.ts",
"scripts": {
"dev": "nodemon -r dotenv/config src/app.ts dotenv_config_path=.env.development",
"docker": "nodemon -r dotenv/config src/app.ts dotenv_config_path=.env.docker",
"prod": "nodemon -r dotenv/config src/app.ts dotenv_config_path=.env.production",
"build": "ts-node esbuild.config.ts",
"serve": "node dist/main.bundle.js",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "Giordano Tinella",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.18",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"esbuild": "^0.19.8",
"eslint": "^8.51.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.6.3",
"socket.io": "^4.7.2"
}
}