-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
106 lines (106 loc) · 3.49 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
{
"name": "@acmucsd/membership-portal",
"version": "3.7.1",
"description": "REST API for ACM UCSD's membership portal.",
"main": "index.d.ts",
"files": [
"index.d.ts",
"types/*.d.ts"
],
"scripts": {
"build": "tsc && cp -r templates build/templates",
"start": "node --env-file=.env build/index.js",
"test": "jest --config jest.config.json --runInBand",
"dev": "node -r ts-node/register --env-file=.env index.ts",
"release": "ts-node ./node_modules/typeorm/cli.js migration:run -d DataSource.ts && node build/index.js",
"lint": "eslint **/*.ts",
"lint:fix": "eslint **/*.ts --fix",
"db:migrate:create": "ts-node ./node_modules/typeorm/cli.js migration:create -n",
"db:migrate": "ts-node ./node_modules/typeorm/cli.js migration:run -d DataSource.ts",
"db:rollback": "ts-node ./node_modules/typeorm/cli.js migration:revert",
"db:seed:create": "ts-node ./node_modules/typeorm/cli.js migration:create -c seed -n",
"db:seed": "ts-node tests/Seeds.ts",
"publish-package": "cp package.json build && yarn publish build --access public",
"update-package": "yarn version --patch && yarn publish-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acmucsd/membership-portal.git"
},
"author": "Sumeet Bansal",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/acmucsd/membership-portal/issues"
},
"engines": {
"node": "^20.12.2",
"yarn": "^1.22.0"
},
"homepage": "https://github.com/acmucsd/membership-portal#readme",
"dependencies": {
"@faker-js/faker": "^9.4.0",
"@sendgrid/mail": "^8.1.4",
"amazon-s3-uri": "^0.1.1",
"async-retry": "^1.3.3",
"aws-sdk": "^2.1692.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"datadog-metrics": "^0.12.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"moment": "2.30.1",
"moment-timezone": "^0.5.46",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"obscenity": "^0.4.1",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"routing-controllers": "^0.10.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedi": "^0.10.0",
"typeorm": "0.3.20",
"typeorm-typedi-extensions": "^0.4.1",
"typescript": "^5.6.3",
"underscore": "^1.13.7",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"yarn": "^1.22.22"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@types/async-retry": "^1.4.9",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/datadog-metrics": "^0.6.4",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.7",
"@types/rfdc": "^1.2.0",
"@types/underscore": "^1.13.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"rfdc": "^1.4.1",
"ts-jest": "^29.2.5",
"ts-mockito": "^2.6.1"
}
}