-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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": "dbms-backend-api",
"version": "0.1.0",
"description": "DBMS Project Backend Rest API",
"main": "dist/main.js",
"repository": "[email protected]:BiteKode/dbms-backend-api.git",
"author": "Thilina Lakshan <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node ./dist/main.js",
"dev": "ts-node src/main.ts",
"clean": "rm -dfr ./dist",
"serve": "ts-node-dev --respawn --transpile-only --rs src/main.ts",
"migrate": "node ./sql/migrate.js"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.9.2",
"js-sql-parser": "^1.4.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/pg": "^7.14.9",
"@types/uuid": "^8.3.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}