-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "swust-timetable-getter",
"version": "1.0.0",
"type": "module",
"scripts": {
"build:vercel": "rollup -c ./rollup.config.ts --configPlugin typescript",
"build:babel": "babel ./src -d ./api -x \".ts,.js\"",
"lint": "tsc --noEmit && eslint ./src --ext .ts",
"start": "nodemon",
"sync:database": "prisma migrate deploy"
},
"engines": {
"node": ">=16.10.0"
},
"dependencies": {
"@prisma/client": "5.6.0",
"config": "^3.3.9",
"cookie": "^0.6.0",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"http-proxy-middleware": "^2.0.6",
"jsdom": "^22.1.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.8",
"nodemon": "^3.0.1",
"prisma": "^5.6.0",
"sharp": "^0.33.2",
"typescript": "^5.3.2",
"validator": "^13.11.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/config": "^3.3.3",
"@types/cookie": "^0.5.4",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@types/jsdom": "^21.1.6",
"@types/jsonwebtoken": "^9.0.5",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.9.4",
"@types/nodemailer": "^6.4.14",
"@types/validator": "^13.11.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"babel-plugin-add-import-extension": "^1.6.0",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "2.8.8",
"rollup": "^4.5.2",
"rollup-plugin-node-externals": "^6.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2"
}
}