-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "orbital-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npx tsc --project tsconfig.json",
"dev": "ts-node --project tsconfig.json src/bootstrap.ts",
"dev:watch": "npx ts-node-dev --respawn --files --project tsconfig.json src/bootstrap.ts",
"start": "node dist/bootstrap.js",
"format": "prettier --write \"src/**/*.ts\" "
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^5.9.1",
"bcrypt": "^5.1.1",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.9.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.19",
"babel-loader": "^9.1.2",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}