-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.55 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
{
"name": "@eburgos/source",
"workspaces": [
"packages/*",
"apps/*"
],
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"host:dev": "npx nx dev @eburgos/host",
"accounts:dev": "npx nx dev @eburgos/accounts",
"dashboard:dev": "npx nx dev @eburgos/dashboard",
"accounts:build": "npx nx build @eburgos/accounts",
"accounts:start": "npx nx start @eburgos/accounts",
"accounts:serve": "npx nx serve @eburgos/accounts",
"accounts:typecheck": "npx nx typecheck @eburgos/accounts",
"accounts:lint": "npx nx link @eburgos/accounts",
"accounts:show": "npx nx show project @eburgos/accounts --web",
"dev": "npx nx run-many --target=dev --all",
"dev:all": "npm run accounts:dev && npm run dashboard:dev",
"build": "npx nx run-many --target=build --all",
"start": "npx nx run-many --target=start --all",
"typecheck": "npx nx run-many -t typecheck --all",
"lint": "npx nx run-many --target=lint --all",
"test": "npx nx run-many --target=test --all",
"test:watch": "npx nx run-many --target=test --all --watch",
"release": "npx nx release --dry-run",
"release:first": "sudo nx release --first-release --dry-run",
"graph": "npx nx graph"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nx/eslint": "^18.3.4",
"@nx/vite": "^18.3.4",
"@nx/web": "18.3.4",
"@vitest/ui": "^1.3.1",
"eslint": "~8.57.0",
"nx": "18.3.4",
"vite": "~5.0.0",
"vitest": "^1.3.1"
},
"dependencies": {
"lodash": "^4.17.21"
}
}