-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.21 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
{
"name": "sauce",
"version": "1.1.0",
"author": "Swarthmore College Computer Society",
"license": "MIT",
"scripts": {
"start": "nodemon --ignore 'webStatic/**' --exec npx ts-node --files src/index.ts",
"postinstall": "npm run install:webStatic",
"install:webStatic": "cd webStatic && npm install",
"install:user-agent": "cd user-agent && npm install",
"install:mc-agent": "cd mc-agent && npm install",
"build": "npm run build:webStatic && npm run packageWebStatic && npm run build:sauce",
"build:sauce": "cd src && npx tsc",
"build:webStatic": "cd webStatic && npm run build",
"packageWebStatic": "npx copyfiles -E -u 1 \"webStatic/dist/**\" . && npx gzipper compress dist",
"pre-commit": "lint-staged",
"installHooks": "npx husky install",
"watchWebStatic": "nodemon --watch webStatic -e js,scss,json --exec npm run build",
"startWithWatch": "run-p start watchWebStatic"
},
"dependencies": {
"@zxcvbn-ts/core": "^1.0.0",
"@zxcvbn-ts/language-common": "^1.0.0",
"@zxcvbn-ts/language-en": "^1.0.0",
"argon2": "^0.28.3",
"axios": "^1.6.0",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.2",
"express-static-gzip": "^2.1.5",
"gray-matter": "^4.0.3",
"helmet": "^5.0.2",
"http-status-codes": "^2.1.4",
"joi": "17.3.0",
"joiful": "^3.0.2",
"ldap-escape": "^2.0.5",
"ldapjs": "^2.3.1",
"marked": "^4.0.12",
"mongoose": "^6.12.0",
"nanoid": "^3.1.31",
"nodemailer": "^6.7.2",
"passport": "^0.6.0",
"passport-ldapauth": "^3.0.1",
"pug": "^3.0.2",
"rate-limiter-flexible": "^2.3.6",
"tslog": "^3.2.2",
"unidecode": "^0.1.8",
"uuid": "^8.3.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.18.0",
"@types/bcrypt": "^5.0.0",
"@types/chmodr": "^1.0.0",
"@types/chownr": "^1.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.2",
"@types/express-session": "^1.17.4",
"@types/ldapjs": "^2.2.2",
"@types/marked": "^4.0.2",
"@types/node": "^12.12.11",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.7",
"@types/unidecode": "^0.1.1",
"@types/uuid": "^8.3.3",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"copyfiles": "^2.4.1",
"cross-env": "^6.0.3",
"eslint": "^8.3.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"gzipper": "^7.0.0",
"husky": "^7.0.0",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"ts-node": "^8.5.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.4"
},
"_moduleDirectories": [
"src"
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.pug": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}