-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "mmuta",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"author": "Bontus Mayor <ikwecheghu@gmail.com>",
"scripts": {
"start": "ts-node --esm ./src/server.ts",
"dev": "nodemon ./src/server.ts",
"start:prod": "npm run build && node ./dist/src/server.js",
"build": "tsc -b -v",
"rebuild": "npm run clean && npm run build",
"buildw": "tsc -b -v -w --preserveWatchOutput -watch --extendedDiagnostics",
"tsc-watch": "tsc-watch -b -v -i -w --noclear --compiler \"./node_modules/.bin/tsc\" --onSuccess \"node --inspect --es-module-specifier-resolution=node ./dist/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase": "^9.21.0",
"firebase-admin": "^11.8.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/morgan": "^1.9.4",
"@types/node": "^20.1.5",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-watch": "^6.0.4"
},
"engines": {
"node": ">=10.0.0"
}
}