-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.72 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
50
51
52
53
{
"name": "itfest-backend",
"version": "0.0.1",
"description": "Sistem backend untuk IT Festival Arkavidia 6.0.",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mustache": "^4.1.1",
"@types/node": "^12.19.15",
"@types/nodemailer": "^6.4.0",
"@types/readline-sync": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"nodemon": "^2.0.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"bcrypt": "^5.0.0",
"class-validator": "^0.10.2",
"cors": "^2.8.5",
"express": "^4.15.4",
"express-validator": "^6.9.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mustache": "^4.1.0",
"mysql": "^2.18.1",
"nodemailer": "^6.4.17",
"pg": "^8.5.1",
"readline-sync": "^1.4.10",
"reflect-metadata": "^0.1.13",
"socket.io": "^3.1.0",
"typeorm": "^0.2.30",
"uuid-token-generator": "^1.0.0"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"serve": "ts-node -F src/index.ts",
"lint": "eslint 'src/**/*.ts'",
"manage": "ts-node src/manage.ts",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"migration:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"seed": "ts-node ./src/seed/index.ts",
"reset": "npm run schema:drop && npm run schema:sync && npm run seed",
"schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync"
}
}