-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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
44
45
46
47
48
49
{
"name": "frapps-1.0",
"version": "1.0.0",
"description": "Fractal applications",
"type": "module",
"workspaces": [
"contracts"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "npx tsc -p tsconfig.json --noEmit",
"init-apps": "cd ordao && npm install && NODE_OPTIONS=--max-old-space-size=2048 npm run build",
"alias": "echo \"Run: source ./orfrapps-alias\"",
"init": "git submodule update --init --recursive && npm install && npm run init-apps && npm run alias",
"update": "git submodule update --recursive && npm install && npm run init-apps && npm run alias",
"start": "NODE_OPTIONS=--max-old-space-size=2048 ORNODE_CFG_PATH=./ordao/services/ornode/dev-config.json tsx src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sim31/frapps.git"
},
"keywords": [
"dao"
],
"author": "sim31",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sim31/frapps/issues"
},
"homepage": "https://github.com/sim31/frapps#readme",
"devDependencies": {
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@ordao/ornode": "file:./ordao/services/ornode",
"@ordao/ortypes": "^1.1.3",
"@ordao/ts-utils": "^1.1.3",
"commander": "^13.1.0",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"dotenv": "^16.4.7",
"endent": "^2.1.0",
"execa": "^9.5.2",
"mongodb": "^6.17.0",
"pm2": "^5.4.3",
"zod": "3.24.1"
}
}