-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
108 lines (108 loc) · 3.34 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "mathsoc-website",
"version": "1.0.0",
"description": "The source code for the MathSoc website migration",
"lint-staged": {
"*.[jt]s*": [
"prettier --write"
],
"*.scss": [
"prettier --write"
]
},
"main": "server.ts",
"scripts": {
"start": "npm run sass-build && npm run ts-build && npm run preload && ts-node backup.ts && ts-node server.ts",
"dev": "npm run ts-build && npm run sass-build && npm run preload && npm-run-all --parallel sass-watch ts-watch host-dev-server",
"host-dev-server": "nodemon server.ts",
"sass-build": "sass public/assets/sass:public/assets/css --no-source-map",
"sass-watch": "sass --watch public/assets/sass:public/assets/css --no-source-map",
"lint": "npx eslint server/ public/assets/ts *.ts",
"precommit": "lint-staged",
"preload": "ts-node preload.ts",
"ts-build": "webpack --config webpack.config.js",
"ts-watch": "webpack --config webpack.config.js --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MathSoc/mathsoc-website.git"
},
"author": "MathSoc",
"license": "ISC",
"bugs": {
"url": "https://github.com/MathSoc/mathsoc-website/issues"
},
"homepage": "https://github.com/MathSoc/mathsoc-website#readme",
"dependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@tanstack/react-query": "^5.28.9",
"@types/cron": "^2.0.1",
"@types/jsoneditor": "^9.9.0",
"@types/passport-google-oauth20": "^2.0.11",
"@types/quill": "^2.0.10",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@types/rsync": "^0.4.32",
"babel-loader": "^9.1.2",
"cookie-parser": "^1.4.6",
"cron": "^2.3.1",
"dotenv": "^16.3.1",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-session": "^1.17.3",
"husky": "^8.0.3",
"jsoneditor": "^9.10.2",
"node-fetch": "^2.6.9",
"nodemailer": "^6.8.0",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-azure-ad": "4.2",
"passport-google-oauth20": "^2.0.0",
"pug": "^3.0.2",
"quill": "^1.3.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"rsync": "^0.6.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"validator": "^13.7.0",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0",
"winston": "^3.8.2",
"zod": "^3.20.2",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@swc/core": "^1.3.32",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.15",
"@types/express-fileupload": "^1.4.1",
"@types/express-session": "^1.17.7",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"@types/passport": "^1.0.12",
"@types/passport-azure-ad": "^4.3.1",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.34.1",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "2.8.3",
"sass": "^1.55.0",
"typescript": "^4.9.4"
},
"nodemonConfig": {
"ignore": [
"server/data/**"
]
}
}