-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
127 lines (127 loc) · 3.67 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "mymicds-v2",
"version": "2.0.0",
"description": "MyMICDS.net for all of your MyMICDS.needs",
"contributors": [
{
"name": "Michael Gira",
"email": "[email protected]"
},
{
"name": "Nick Clifford",
"email": "[email protected]"
},
{
"name": "Jack Cai",
"email": "[email protected]"
},
{
"name": "Sam Baumohl",
"email": "[email protected]"
}
],
"main": "src/index.ts",
"scripts": {
"build": "mjml -r src/email/* -o src/html/messages -c.validationLevel skip",
"start": "npm run build && ts-node -C ttypescript --files src/index.ts",
"prod": "npm run build && pm2 start ts-node -i max --name=\"mymicds\" -- -C ttypescript --files src/index.ts",
"tasks": "pm2 start ts-node --name=\"mymicds-tasks\" -- -C ttypescript --files src/tasks.ts",
"test:mocha": "npm run build && TS_NODE_PROJECT=test/tsconfig.json TS_NODE_FILES=true TS_NODE_COMPILER=ttypescript CI=true mocha",
"test:compile": "tsc --noEmit",
"test": "npm run test:compile && npm run test:mocha",
"docs": "typedoc --out ./docs --mode modules ./src/libs ./src/external.d.ts",
"lint": "eslint --ext .ts ./"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyMICDS/MyMICDS-v2.git"
},
"keywords": [
"MyMICDS",
"MICDS"
],
"author": "MyMICDS Development Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyMICDS/MyMICDS-v2/issues",
"email": "[email protected]"
},
"homepage": "https://mymicds.net",
"dependencies": {
"@mymicds/sdk": "^1.13.1",
"@sentry/node": "^6.2.1",
"@types/bcrypt": "^3.0.0",
"@types/cheerio": "^0.22.13",
"@types/cors": "^2.8.4",
"@types/express-jwt": "0.0.40",
"@types/fs-extra": "^8.0.1",
"@types/htmlparser2": "^3.7.31",
"@types/ical": "^0.6.1",
"@types/jsonwebtoken": "^7.2.7",
"@types/later": "^1.2.4",
"@types/lodash": "^4.14.149",
"@types/mongodb": "^3.5.26",
"@types/multer": "^1.3.7",
"@types/node": "^14.14.32",
"@types/nodemailer": "^4.6.1",
"@types/object-assign-deep": "^0.4.0",
"@types/random-js": "^1.0.30",
"@types/request-promise-native": "^1.0.15",
"@types/socket.io": "^1.4.36",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.15.2",
"cheerio": "^0.22.0",
"cors": "^2.8.0",
"express": "^4.14.0",
"fs-extra": "^7.0.1",
"googleapis": "^67.1.1",
"htmlparser2": "^3.9.1",
"ical": "^0.8.0",
"jimp": "^0.16.1",
"jquery": "^3.5.0",
"jsdoc": "^3.6.10",
"jsonwebtoken": "^8.5.1",
"later": "^1.2.0",
"lodash": "^4.17.21",
"mjml": "^4.11.0",
"moment": "^2.29.3",
"mongodb": "^3.6.0",
"multer": "^1.2.0",
"nodemailer": "^6.7.2",
"object-assign-deep": "^0.4.0",
"p-all": "^2.1.0",
"pm2": "^4.5.6",
"random-js": "^1.0.8",
"socket.io": "^2.4.0",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3",
"typescript-is": "^0.17.1"
},
"devDependencies": {
"@mymicds/eslint-config": "^1.0.0",
"@types/chai": "^4.2.7",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^5.2.7",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^4.2.5",
"mocha": "^8.3.1",
"mongodb-memory-server": "^6.2.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2",
"typedoc": "^0.22.15"
}
}