This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.11 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": "web-app-vibrance",
"version": "2024.0.0",
"private": true,
"description": "A web application for VIT Chennai's Cultural Festival, Vibrance.",
"main": "bin/server.ts",
"author": "Sujit Kumar <social@therealsuji.tk> (http://therealsuji.tk)",
"license": "MIT",
"scripts": {
"build:frontend": "cd frontend && yarn build",
"build:no-migrate": "yarn build:frontend && tsc -p .",
"build": "yarn build:no-migrate && yarn migrate up",
"postbuild": "cd frontend && yarn movebuild",
"dev": "nodemon -r dotenv/config bin/server.ts --ignore frontend/",
"migrate": "node node_modules/db-migrate/bin/db-migrate",
"start": "node dist/bin/server.js",
"preinstall": "cd frontend && yarn",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --write ."
},
"dependencies": {
"@google-analytics/data": "^3.1.2",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"db-migrate": "^0.11.13",
"db-migrate-mysql": "^2.2.0",
"db-migrate-plugin-typescript": "^2.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.4.0",
"express-validator": "^7.0.1",
"generate-api-key": "^1.0.2",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mysql": "^2.18.1",
"mysqldump": "^3.2.0",
"node-cache": "^5.1.2",
"node-os-utils": "^1.3.7",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/lodash": "^4.14.191",
"@types/md5": "^2.3.2",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.9",
"@types/node-os-utils": "^1.3.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"dotenv": "^10.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ls-engines": "^0.9.1",
"nodemon": "^3.0.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">= 18"
}
}