-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 3.26 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
{
"name": "@acmucsd/membership-portal",
"version": "3.7.0",
"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 build/index.js",
"test": "jest --config jest.config.json --runInBand",
"dev": "nodemon -L -e ts -i node_modules -i .git -V index.ts",
"release": "ts-node ./node_modules/typeorm/cli.js migration:run && node build/index.js",
"lint": "eslint ./ --ext .ts",
"lint:fix": "eslint ./ --ext .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",
"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": "^14.0.0",
"yarn": "^1.22.0"
},
"homepage": "https://github.com/acmucsd/membership-portal#readme",
"dependencies": {
"@sendgrid/mail": "^7.4.4",
"amazon-s3-uri": "^0.1.1",
"async-retry": "^1.3.3",
"aws-sdk": "^2.906.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"datadog-metrics": "^0.9.3",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"moment-timezone": "^0.5.34",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"obscenity": "^0.2.0",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typedi": "^0.8.0",
"typeorm": "0.2.32",
"typeorm-typedi-extensions": "^0.2.3",
"typescript": "^4.0.0",
"underscore": "^1.13.1",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/datadog-metrics": "^0.6.1",
"@types/ejs": "^3.0.4",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.5",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.1",
"@types/multer": "^1.4.3",
"@types/node": "^14.0.13",
"@types/rfdc": "^1.1.0",
"@types/underscore": "^1.10.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.2.5",
"nodemon": "^2.0.7",
"rfdc": "^1.3.0",
"ts-jest": "^27.0.5",
"ts-mockito": "^2.6.1"
}
}