-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "on-project-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"build": "NODE_ENV=development tsoa spec-and-routes && NODE_ENV=development tsc",
"start": "NODE_ENV=production node dist/index.js",
"build-only": "tsc",
"format": "prettier --write src/",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"type-check": "vue-tsc --build --force",
"typeorm": "typeorm-ts-node-commonjs",
"migrate": "npm run typeorm migration:run -- --dataSource src/ormconfig.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@nestjs/typeorm": "^10.0.2",
"apollo-server-express": "^3.13.0",
"axios": "^1.7.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"connect-sqlite3": "^0.9.15",
"crypto": "^1.0.1",
"express": "^4.19.2",
"express-formidable": "^1.2.0",
"express-openapi-decorator": "^0.0.6",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"express-youch": "^1.0.1",
"graphql-upload-ts": "^2.1.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.0",
"nodemailer": "^6.9.14",
"pg": "^8.12.0",
"qrcode": "^1.5.3",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.7.5",
"speakeasy": "^2.0.0",
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.4.0",
"type-graphql": "^2.0.0-rc.2",
"typeorm": "^0.3.20",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/connect-sqlite3": "^0.9.5",
"@types/express": "^4.17.21",
"@types/express-formidable": "^1.2.3",
"@types/express-session": "^1.18.0",
"@types/lodash": "^4.17.7",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^22.1.0",
"@types/nodemailer": "^6.4.15",
"@types/qrcode": "^1.5.5",
"@types/speakeasy": "^2.0.10",
"@types/sqlite3": "^3.1.11",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.0"
}
}