-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "api-server",
"version": "1.0.0",
"main": "functions/lib/src/index.js",
"private": true,
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"envalid": "7.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"ngrok": "^4.3.3",
"redis": "^4.2.0"
},
"devDependencies": {
"@moralisweb3/eslint-config": "^1.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"app-root-path": "^3.1.0",
"eslint": "^8.32.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.27.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.3"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "tsnd --respawn src/index.ts",
"build": "tsc",
"lint": "eslint --ext .js,.ts src",
"deploy": "NODE_ENV=production firebase deploy --only hosting"
}
}