-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "ttpa-starter",
"version": "1.0.0",
"description": "Typescript, TypeORM, PostgreSQL, Auth - Starter",
"main": "src/index.ts",
"author": "Marc-André Ploux <[email protected]>",
"license": "MIT",
"engines": {
"node": "14.x"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-validator": "^0.13.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.9.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.27",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"scripts": {
"postinstall": "yarn build",
"build": "tsc --outDir ./dist --sourceMap false",
"start": "node ./dist/src/index.js",
"dev": "nodemon src/index.ts"
}
}