-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.32 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
{
"name": "express-typescript-ethersjs",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "env-cmd -f ./.env.local node build/app.js",
"staging": "env-cmd -f ./.env.staging node build/app.js",
"production": "env-cmd -f ./.env.production node build/app.js",
"dev-remote": "npm run build && npm run dev",
"staging-remote": "npm run build && npm run staging",
"production-remote": "npm run build && npm run production",
"dev-local": "env-cmd -f ./.env.dev nodemon --watch 'src/**/*.ts' --exec ts-node src/app.ts",
"staging-local": "env-cmd -f ./.env.staging nodemon --watch 'src/**/*.ts' --exec ts-node src/app.ts",
"production-local": "env-cmd -f ./.env.production nodemon --watch 'src/**/*.ts' --exec ts-node src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.7.16",
"cors": "^2.8.5",
"cross-fetch": "^3.1.8",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"graphql": "^16.8.1",
"socket.io": "^4.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.22",
"plop": "^3.1.2"
}
}