-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.12 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
72
73
74
75
{
"name": "mozi-server",
"version": "0.0.1",
"description": "mozi server repo",
"main": "index.js",
"repository": "https://github.com/team-yaza/mozi-server",
"author": "hyunjin <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"prestart": "rm -rf ./build && yarn build",
"start": "cross-env NODE_ENV=production ts-node -r tsconfig-paths/register --files build/src/index.js",
"dev": "cross-env NODE_ENV=development nodemon",
"test": "yarn build && jest --forceExit",
"lint": "eslint --fix src",
"prepare": "husky install"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.8",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"husky": "^8.0.1",
"jest": "^29.0.0",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"pino-pretty": "^9.1.0",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"swagger-ui-express": "^4.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4",
"yamljs": "^0.3.0"
},
"dependencies": {
"@google-cloud/local-auth": "^2.1.1",
"@sentry/node": "^7.15.0",
"@sentry/tracing": "^7.15.0",
"axios": "^0.27.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-prom-bundle": "^6.5.0",
"googleapis": "^109.0.1",
"helmet": "^5.1.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"pino": "^8.4.2",
"prom-client": "^14.1.0",
"sequelize": "^6.21.4",
"tsoa": "^4.1.3",
"zod": "^3.19.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}