-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 926 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 926 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
{
"name": "ab-testing-platform",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "A/B Testing Platform for Framer",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo run typecheck",
"deploy:worker": "pnpm --filter worker deploy",
"deploy:plugin": "pnpm --filter plugin build && echo 'Upload dist/ to Framer manually'",
"db:migrate": "pnpm --filter worker db:migrate",
"db:studio": "pnpm --filter worker db:studio"
},
"devDependencies": {
"@types/node": "^20.0.0",
"prettier": "^3.0.0",
"turbo": "^2.0.0",
"typescript": "^5.9.3",
"wrangler": "^4.76.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"framer-plugin": "^3.10.3"
}
}