-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.71 KB
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
{
"name": "univ-attendance-system-api",
"version": "0.0.1",
"description": "University attendance system API.",
"type": "commonjs",
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"vercel-build": "npm run build",
"dev": "nodemon",
"start": "node build/index.js",
"typeorm": "typeorm-ts-node-commonjs",
"migration:create": "typeorm migration:create src/migration/MigrationName -- -d src/config/data-source.ts",
"migration:generate": "npm run typeorm migration:generate src/migration/generated -- -d src/config/data-source.ts",
"migration:run": "npm run typeorm migration:run -- -d src/config/data-source.ts",
"migration:revert": "npm run typeorm migration:revert -- -d src/config/data-source.ts",
"seed": "ts-node src/seed.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.4",
"@types/memory-cache": "^0.2.4",
"@types/node": "^16.11.10",
"concurrently": "^9.1.2",
"nodemon": "^3.1.8",
"ts-node": "10.7.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/cors": "^2.8.15",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"memory-cache": "^0.2.0",
"pg": "^8.4.0",
"pg-connection-string": "^2.7.0",
"reflect-metadata": "^0.1.13",
"serverless-http": "^3.2.0",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typeorm": "0.3.17",
"univ-attendance-system-api": "file:"
}
}