-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.58 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
{
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/jsonwebtoken": "^8.5.4",
"bcrypt": "^5.0.1",
"class-validator": "^0.13.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.12",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"ts-node": "^10.1.0",
"typeorm": "^0.2.35",
"typeorm-seeding": "^1.6.1",
"typescript": "^4.3.5"
},
"name": "toss",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34"
},
"scripts": {
"prestart": "tsc",
"pretest": "tsc",
"predev": "tsc",
"build": "nodemon --watch src/**/*.ts --exec ts-node src/app.ts",
"dev": "nodemon --watch src --delay 1 --exec ts-node src/app.ts",
"start": "nodemon --watch src --delay 1 --exec ts-node src/app.ts",
"schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync",
"seed:config": "ts-node ./node_modules/typeorm-seeding/dist/cli.js config",
"seed:run": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed"
},
"author": "",
"license": "ISC",
"description": ""
}