-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "info-functions",
"version": "1.0.0",
"description": "Mainly serverless functions for small usage in a info tracker application\nIt should track the users with their nid.",
"main": "index.js",
"esm": "auto",
"exports": "./dist/index.js",
"author": "Mina Sameh",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"clean": "rm -rf ./dist || true",
"build": "npm run clean && tsc",
"build:watch": "tsc --watch --noEmit",
"dev": "tsx watch src/dev.ts",
"test": "node --test",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts src",
"pre-commit": "lint-staged"
},
"dependencies": {
"argon2": "^0.30.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^11.10.1",
"firebase-functions": "^4.4.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.1",
"pino": "^8.14.1",
"pino-http": "^8.3.3",
"pino-pretty": "^10.2.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}