-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (40 loc) · 1.76 KB
/
package.json
File metadata and controls
47 lines (40 loc) · 1.76 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
{
"name": "stipula-fullstack-project",
"version": "1.0.0",
"description": "Full-stack project for Stipula contract generation and analysis with React frontend.",
"main": "backend/server.js",
"scripts": {
"install:backend": "npm install --prefix ./backend",
"install:frontend": "npm install --prefix ./frontend",
"install:interpreter": "npm install --prefix ./server_interpreter",
"setup:analyzer-venv": "python3 -m venv ./analyzer/venv",
"install:analyzer": "./analyzer/venv/bin/pip install -r ./analyzer/requirements.txt",
"setup:liquidity-analyzer-venv": "python3 -m venv ./liquidity-analyzer/venv",
"install:liquidity-analyzer": "./liquidity-analyzer/venv/bin/pip install -r ./liquidity-analyzer/requirements.txt",
"install:all-node": "npm run install:backend && npm run install:frontend && npm run install:interpreter",
"install:all-python": "rm -rf ./analyzer/venv && npm run setup:analyzer-venv && npm run install:analyzer && rm -rf ./liquidity-analyzer/venv && npm run setup:liquidity-analyzer-venv && npm run install:liquidity-analyzer",
"install:all": "npm run install:all-node && npm run install:all-python",
"start:backend": "node backend/server.js",
"start:frontend": "npm start --prefix ./frontend",
"start:interpreter": "node server_interpreter/interpreter_server.js",
"dev": "concurrently \"npm run start:backend\" \"npm run start:interpreter\" \"npm run start:frontend\"",
"install": "npm run install:all",
"start": "npm run dev"
},
"keywords": [
"stipula",
"blockchain",
"smart-contracts",
"legaltech",
"react",
"node"
],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"lucide-react": "^0.542.0"
}
}