-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
47
48
49
50
51
52
53
{
"name": "@sidan-lab/sidan-gov",
"version": "1.0.0",
"description": "A template for Aiken development by MeshJS",
"main": "mesh/index.ts",
"scripts": {
"build:frontend": "turbo build:frontend",
"build:backend": "turbo build:backend",
"dev": "turbo dev",
"start:grpc": "turbo start:grpc",
"clean": "turbo run clean && rm -rf .turbo && rm -rf dist && rm -rf node_modules && rm package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MeshJS/mesh-aiken-template.git"
},
"keywords": [
"Mesh"
],
"author": "Mesh",
"license": "MIT",
"bugs": {
"url": "https://github.com/MeshJS/mesh-aiken-template/issues"
},
"homepage": "https://github.com/MeshJS/mesh-aiken-template#readme",
"dependencies": {
"@meshsdk/core": "^1.7.18",
"@meshsdk/core-csl": "^1.7.18",
"@types/lodash": "^4.17.13",
"axios": "^1.7.5",
"dotenv": "^16.4.5",
"redis": "^4.7.0",
"uuid": "^10.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"turbo": "^2.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"backend/*",
"frontend/*"
]
}