-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.48 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.48 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
{
"name": "acroyoga-community",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n tokens,web -c blue,green \"npm run tokens:watch -w @acroyoga/tokens\" \"npm run dev -w @acroyoga/web\"",
"build": "npm run tokens:build -w @acroyoga/tokens && npm run build -w @acroyoga/web",
"start": "npm run start -w @acroyoga/web",
"lint": "npm run lint -w @acroyoga/web",
"test": "npm run test -w @acroyoga/tokens && npm run test -w @acroyoga/shared-ui && npm run test -w @acroyoga/shared && npm run test -w @acroyoga/web && npm run test -w @acroyoga/mobile",
"test:a11y": "npm run test:a11y -w @acroyoga/shared-ui && npm run test:a11y -w @acroyoga/web",
"test:watch": "npm run test:watch -w @acroyoga/web",
"typecheck": "tsc -b",
"tokens:build": "npm run tokens:build -w @acroyoga/tokens",
"tokens:watch": "npm run tokens:watch -w @acroyoga/tokens",
"storybook": "npm run storybook -w @acroyoga/web",
"build-storybook": "npm run build-storybook -w @acroyoga/web",
"db:migrate": "npm run db:migrate -w @acroyoga/web",
"db:seed:geography": "npm run db:seed:geography -w @acroyoga/web",
"db:seed:admin": "npm run db:seed:admin -w @acroyoga/web"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"concurrently": "^9.2.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}