-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1019 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1019 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
27
28
29
30
{
"name": "attie",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=24 <26"
},
"workspaces": [
"apps/web",
"packages/contracts",
"packages/design-tokens"
],
"scripts": {
"dev": "npm --workspace @attie/web run dev",
"build": "npm --workspace @attie/web run build",
"start": "npm --workspace @attie/web run start",
"lint": "npm --workspace @attie/web run lint",
"typecheck": "npm --workspace @attie/contracts run typecheck && npm --workspace @attie/web run typecheck",
"test": "npm --workspace @attie/contracts run test && npm --workspace @attie/web run test && npm run test:swift",
"test:web": "npm --workspace @attie/web run test",
"test:swift": "swift test --package-path apps/apple/Packages/AttieCore",
"audit": "npm audit --audit-level=moderate",
"check": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"overrides": {
"postcss": "8.5.12"
}
}