-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "wcs-points-api",
"version": "0.1.0",
"main": "src/server.ts",
"repository": "https://github.com/IllinoisWCS/wcs-points-api",
"author": "IllinoisWCS",
"license": "MIT",
"resolutions": {
"mongodb": "^4.1.0"
},
"dependencies": {
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongoose": "^6.6.5",
"nanoid": "^3.3.4",
"passport": "^0.6.0",
"passport-saml": "^3.2.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/node": "^18.11.18",
"@types/passport": "^1.0.11",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.{ts,md}": "prettier --write"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"dev": "nodemon --files -r dotenv/config"
}
}