forked from codam-coding-college/find-peers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "@codam-coding-college/find-peers",
"author": "Joppe Koers",
"main": "./build/src/app.js",
"scripts": {
"start": "node ./build/src/app.js",
"dev": "ts-node-dev --quiet --clear --rs --respawn src/app.ts",
"build": "tsc",
"lint:check": "eslint --cache --cache-location node_modules/.eslintcache src; prettier --check src",
"lint:fix": "eslint --fix src; prettier --write src"
},
"dependencies": {
"@types/compression": "^1.7.2",
"@types/ejs": "3.1.0",
"@types/express": "^4.17.17",
"@types/express-session": "1.17.4",
"@types/node": "18.15.1",
"@types/node-fetch": "2.1.0",
"@types/passport": "1.0.7",
"@types/request": "^2.48.8",
"@types/session-file-store": "1.2.2",
"@types/strip-bom": "3.0.0",
"@types/strip-json-comments": "3.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"42-connector": "github:codam-coding-college/42-connector#3.1.0",
"compression": "^1.7.4",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"ejs": "3.1.8",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "4.17.3",
"express-session": "1.17.2",
"hot-shots": "^10.0.0",
"node-fetch": "2.6.7",
"passport": "0.6.0",
"passport-oauth": "1.0.0",
"path": "0.12.7",
"request": "^2.88.2",
"typescript": "4.9.5"
},
"engines": {
"node": ">=18.0.0"
}
}