-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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
{
"name": "typescript-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.ts",
"prod": "node dist/src/app.js",
"build": "tsc",
"restart": "npm run remigrate && ./populate.sh && ./populate.sh && ./populate.sh && ./populate.sh;",
"remigrate": "npx knex migrate:rollback && npx knex migrate:latest;"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.1",
"@graphile/pg-aggregates": "^0.1.0",
"@graphile/pg-pubsub": "^4.12.2",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^14.3.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"graphql-request": "^3.7.0",
"knex": "^1.0.1",
"pg": "^8.7.1",
"postgraphile": "^4.12.8",
"postgraphile-plugin-connection-filter": "^2.2.2",
"postgraphile-plugin-nested-mutations": "^1.1.0",
"postgraphile-upsert-plugin": "^2.1.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.11",
"@types/lodash": "^4.14.178",
"@types/node": "^14.14.22",
"kill-port": "^1.6.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}