-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.04 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
76
77
78
79
80
{
"name": "cafeteria-console-server",
"version": "1.9.13",
"description": "Cafeteria 콘솔 API 서버입니다.",
"scripts": {
"dev": "nodemon --exec ts-node index.ts",
"test": "jest test/unit",
"build": "tsc",
"start": "node dist/index.js",
"preview": "tsc && node dist/index.js",
"preversion": "npm run test",
"postversion": "git push && git push --tags",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inu-appcenter/cafeteria-console-server.git"
},
"keywords": [
"inu",
"cafeteria"
],
"author": "potados99",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/inu-appcenter/cafeteria-console-server/issues"
},
"homepage": "https://github.com/inu-appcenter/cafeteria-console-server#readme",
"dependencies": {
"@inu-cafeteria/backend-core": "^0.10.17",
"aws-sdk": "^2.973.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"exceljs": "^4.2.1",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.5.1",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.0",
"nodemon": "^2.0.12",
"reflect-metadata": "^0.1.13",
"serialize-error": "^8.1.0",
"zod": "^3.7.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^27.0.6",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^14.17.11",
"@types/stack-trace": "^0.0.29",
"@types/validator": "^13.6.3",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.6",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
}
}