-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
41
42
43
44
45
46
{
"name": "rpc-demo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"watch:rpc1": "nodemon -w ./rpc1 ./rpc1/index.ts",
"watch:rpc2": "nodemon -w ./rpc2 ./rpc2/index.ts",
"watch:rpc3": "nodemon -w ./rpc3 ./rpc3/index.ts",
"watch:gateway": "nodemon -w index.ts ./index.ts",
"seed": "ts-node ./scripts/seed.ts"
},
"nodemonConfig": {
"ignore": [
"./forestadmin-schema.json",
"./typings.ts"
]
},
"dependencies": {
"@forestadmin-experimental/datasource-rpc": "^1.1.1",
"@forestadmin-experimental/rpc-agent": "^1.1.1",
"@forestadmin/agent": "^1.41.3",
"@forestadmin/datasource-sql": "^1.14.4",
"dotenv": "^16.0.1",
"knex": "^3.1.0",
"pg": "^8.12.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.14.10",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^2.0.12",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}