-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
48
49
{
"name": "esshop-postgresql-nodejs",
"version": "1.0.0",
"description": "online-shop rest api",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node ./src/server.ts",
"start-dev": "nodemon ./src/server.ts",
"build": "rm -rf ./build/ && tsc",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli -f ./src/utils/ormcong.ts"
},
"keywords": [
"node",
"postgresql",
"typeorm",
"typescript",
"online-shop rest api"
],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.8.0",
"redis": "^4.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"express": "^4.18.2",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}