-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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": "auto-drive",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/autonomys/auto-drive.git",
"author": "Autonomys Network",
"license": "MIT",
"workspaces": [
"backend",
"frontend",
"auth",
"gateway",
"hasura",
"packages/*",
"submodules/*"
],
"scripts": {
"build:backend": "yarn workspace backend build",
"build:frontend": "yarn workspace frontend build",
"build:auth": "yarn workspace auth build",
"build": "make all",
"test": "make test",
"frontend": "yarn workspace frontend",
"lint": "yarn workspaces foreach --all --exclude hasura --exclude @auto-drive/models run lint",
"backend": "yarn workspace backend",
"hasura": "yarn workspace hasura",
"auth": "yarn workspace auth",
"gateway": "yarn workspace gateway",
"models": "yarn workspace @auto-drive/models",
"auto-files-gateway": "yarn workspace auto-files-gateway"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/spdy": "^3.4.9",
"eslint-plugin-import": "^2.31.0"
},
"dependencies": {
"@autonomys/rpc": "^1.4.5",
"cache-manager": "^6.4.1",
"keyv": "^5.3.1"
}
}