-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "api",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"engines": {
"node": "18"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"dev-old": "tsup src/index.ts --format cjs --watch --onSuccess \"node dist/index.js\"",
"dev": "firebase emulators:start --only functions",
"deploy": "firebase deploy --only functions",
"lint": "tsc --noEmit && TIMING=1 eslint \"src/**/*.ts*\"",
"start": "node dist/index.js"
},
"dependencies": {
"a-promise-wrapper": "^1.1.3",
"body-parser": "^1.19.0",
"core": "workspace:*",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^11.4.0",
"firebase-functions": "^4.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"eslint": "^7.32.0",
"eslint-config-custom-server": "workspace:*",
"supertest": "^6.2.4",
"tsconfig": "workspace:*",
"tsup": "^6.2.3",
"typescript": "^4.8.3"
}
}