-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "glot-messenger-backend",
"version": "1.0.0",
"description": "server on express with typescript for glot-messenger app",
"main": "src/index.js",
"scripts": {
"build:app": "npx tsc",
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.ts"
},
"keywords": [
"TypeScript",
"Node",
"NodeJS",
"Express",
"ExpressJS",
"JavaScript",
"glot",
"glot-messenger",
"GLOT",
"server",
"backend",
"glot-messenger-backend",
"TS",
"JS"
],
"author": "pixel.inc <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"config": "^3.3.12",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.5.1"
},
"devDependencies": {
"@types/config": "^3.3.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.14.10",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}