-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1005 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1005 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
31
32
33
34
{
"name": "specs-plugin",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "node scripts/build.js",
"watch": "node scripts/build.js --watch",
"typecheck": "tsc --noEmit",
"test:ui": "playwright test",
"test:unit": "vitest run",
"test": "npm run typecheck && npm run test:unit && npm run build && npm run test:ui"
},
"devDependencies": {
"@figma/plugin-typings": "^1.90.0",
"@phosphor-icons/react": "^2.1.7",
"@playwright/test": "^1.49.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"esbuild": "^0.21.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3",
"vitest": "^4.0.18"
}
}