-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.42 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cafeteria-server",
"version": "2.3.10",
"description": "Cafeteria API 서버입니다.",
"scripts": {
"dev": "nodemon --exec ts-node index.ts",
"test": "jest tests/unit",
"build": "tsc",
"start": "node -r source-map-support/register dist/index.js",
"preview": "npm run build && npm start",
"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-server.git"
},
"keywords": [
"inu",
"cafeteria"
],
"author": "potados99",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/inu-appcenter/cafeteria-server/issues"
},
"homepage": "https://github.com/inu-appcenter/cafeteria-server#readme",
"dependencies": {
"@inu-cafeteria/backend-core": "^0.10.16",
"axios": "^0.21.2",
"axios-cookiejar-support": "^1.0.1",
"bcrypt": "^5.0.1",
"cheerio": "^1.0.0-rc.10",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"isomorphic-fetch": "^3.0.0",
"mysql2": "^2.3.0",
"node-ical": "^0.13.0",
"nodemailer": "^6.6.3",
"qs": "^6.10.1",
"rand-token": "^0.4.0",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"tough-cookie": "^4.0.0",
"uuid-with-v6": "^1.1.2",
"zod": "^3.7.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.5",
"@types/moment": "^2.13.0",
"@types/node": "^16.7.1",
"@types/nodemailer": "^6.4.4",
"@types/qs": "^6.9.7",
"@types/semver": "^7.3.8",
"@types/source-map-support": "^0.5.4",
"@types/tough-cookie": "^4.0.1",
"@types/uuid-with-v6": "^1.1.0",
"jest": "^27.0.6",
"mockdate": "^3.0.5",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.(test|spec)\\.ts$",
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
}
}