This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "api",
"private": true,
"version": "1.0.0",
"main": "index.js",
"author": "Anthony de Cuyper",
"license": "ISC",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier-format": "prettier --config .prettierrc.json --write src/**/*.ts"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.6.2",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"nodemon": "^2.0.7",
"prettier": "2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.1.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.0",
"morgan": "^1.10.0",
"node-fetch": "2.6.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"zod": "^3.20.2"
}
}