-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "node-postgres-typescript-boilerplate",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"description": "",
"repository": "https://github.com/KaranJagtiani/node-postgres-typescript-boilerplate",
"author": "Karan Jagtiani",
"private": false,
"scripts": {
"dev": "NODE_ENV=development concurrently \"yarn run watch-compile\" \"yarn run watch-dev\"",
"test": "jest",
"watch-compile": "swc src -w --out-dir dist",
"watch-dev": "nodemon --watch \"dist/**/*\" -e js ./dist/server.js",
"build": "swc src -d dist",
"start": "NODE_ENV=production node dist/server.js"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.62",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.0",
"@types/pg": "^8.10.2",
"@types/supertest": "^2.0.12",
"@types/underscore": "^1.11.5",
"chokidar": "^3.5.3",
"concurrently": "^8.2.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"pg": "^8.11.0",
"sequelize": "^6.32.0",
"underscore": "^1.13.6"
}
}