-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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": "server",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node ./app.ts",
"serve": "nodemon ./app.ts",
"build": "tsc -p .",
"typeorm": "typeorm-ts-node-commonjs -d ./connection/data-source.ts",
"migrate": "npm run typeorm migration:generate -n ./migrations/added-user-entity",
"db:push": "npm run typeorm migration:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/config": "^3.3.0",
"@types/express": "^4.17.16",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^16.11.10",
"ts-node": "10.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "4.5.2"
},
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"axios": "^1.3.3",
"bcryptjs": "^2.4.3",
"config": "^3.3.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "^4.17.2",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"nodemon": "^2.0.20",
"pg": "^8.4.0",
"redis": "^4.6.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.11"
}
}