-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.78 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "book",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "export NODE_OPTIONS=--max-old-space-size=4096 && tsc && node build/app.js",
"test": "jest",
"test:coverage": "jest --coverage",
"dev": "export NODE_OPTIONS=--max-old-space-size=4096 && nodemon",
"db:create": "npx sequelize db:create",
"db:drop": "npx sequelize db:drop",
"db:migrate": "./node_modules/.bin/ts-node ./src/db/migrations/migration-all-table.ts",
"db:seed": "npx sequelize db:seed:all",
"start-gendoc": "node ./src/swagger.js",
"artillery": "npx artillery run src/util/artillery/loadtest.json -o src/util/artillery/results/loadtest_result.json",
"artillery:report": "npx artillery report src/util/artillery/results/loadtest_result.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/register": "^7.22.15",
"@babel/runtime": "^7.23.4",
"@types/morgan": "^1.9.9",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"axios": "^1.6.2",
"class-transformer": "^0.5.1",
"class-validator-jsonschema": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint-plugin-import": "^2.29.0",
"express": "^4.18.2",
"googleapis": "^129.0.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.6.5",
"node-cron": "^3.0.3",
"nodemon": "^3.0.1",
"redis": "^4.6.11",
"sequelize": "^6.35.1",
"sequelize-cli": "^6.3.0",
"swagger-autogen": "^2.23.7",
"swagger-cli": "^4.0.4",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.9.4",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.11.7",
"artillery": "^2.0.3",
"babel-jest": "^29.7.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"node-mocks-http": "^1.13.0",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}