forked from ceejaylaboratory/AnchorPoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 680 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 680 Bytes
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
{
"name": "anchor-point",
"private": true,
"workspaces": [
"dashboard",
"demo",
"backend"
],
"scripts": {
"dev:dashboard": "npm run dev -w dashboard",
"dev:demo": "npm run dev -w demo",
"dev:backend": "npm run dev -w backend",
"dev": "concurrently \"npm run dev:dashboard\" \"npm run dev:demo\" \"npm run dev:backend\"",
"test:backend": "npm test -w backend",
"lint:backend": "npm run lint -w backend",
"migrate:check": "npm run migrate:check -w backend",
"install:all": "npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"@types/node": "^25.6.0",
"axios": "^1.15.2"
}
}