forked from Codehagen/Badget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.44 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
{
"name": "badget",
"version": "0.1.0",
"license": "AGPL-3.0",
"private": true,
"author": {
"name": "Christer",
"url": "https://twitter.com/Codehagen"
},
"engines": {
"node": ">=v20.10.0"
},
"packageManager": "[email protected]",
"scripts": {
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean",
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "turbo dev --filter=www",
"dev:email": "turbo dev --filter=@projectx/transactional",
"test": "turbo test",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"db:seed": "pnpm -F db seed",
"format": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"format:check": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@projectx/prettier-config": "^0.1.0",
"prettier": "^3.2.5",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
},
"prettier": "@projectx/prettier-config",
"dependencies": {
"framer-motion": "^11.0.8"
}
}