-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 932 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
33
34
35
36
{
"name": "backend",
"version": "1.0.0",
"description": "this is backend for vulcan launchpad",
"main": "src/server.ts",
"scripts": {
"dev": "nodemon",
"start": "node dist/server.js",
"build": "tsc",
"server": "node dist/server.js",
"production": "set PORT=80&&set ENVIRONMENT=PRODUCTION&&ts-node src/server.ts"
},
"author": "dew1204",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.0",
"moralis": "^2.25.2",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-validator": "^3.0.0",
"@types/mongoose": "^5.11.97",
"dotenv": "^16.4.5",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.4.4"
}
}