-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"scripts": {
"dev:ax": "ax run --working-dir ./ax-data --bind-api 0.0.0.0:4454",
"dev:vis": "vite",
"dev": "concurrently npm:dev:ax npm:dev:vis",
"test": "jest",
"build": "tsc && vite build",
"build:watch": "tsc --watch",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"clean:ax": "rimraf ax-data"
},
"dependencies": {
"@actyx/machine-runner": "^0.5.7",
"@actyx/sdk": "^0.5.9",
"fast-equals": "^5.0.1",
"fastify": "^4.26.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"systemic-ts-utils": "^0.2.5",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@actyx/machine-check": "^0.3.1",
"@jest/globals": "^29.7.0",
"@types/node": "^20.11.16",
"@types/react": "18.3.1",
"@types/react-dom": "18.0.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "8.2.2",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.0.8"
}
}