-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
41 lines (41 loc) · 1.48 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
{
"name": "create-t3-turbo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/meetqy/rao-pics"
},
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf coverage node_modules",
"clean:workspaces": "turbo clean",
"create:pkg": "turbo gen init",
"dev": "turbo dev --parallel --filter='!@rao-pics/docs'",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache'",
"lint": "turbo lint --continue -- --cache --cache-location 'node_modules/.cache/.eslintcache'",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"releases": "pnpm build && turbo releases --filter electron",
"test": "cross-env NODE_ENV=development vitest run --coverage.enabled",
"test:ui": "cross-env NODE_ENV=development vitest --ui --coverage.enabled",
"typecheck": "turbo typecheck"
},
"prettier": "@rao-pics/prettier-config",
"dependencies": {
"@rao-pics/prettier-config": "workspace:*",
"prettier": "^3.0.2",
"turbo": "^1.11.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.0.1",
"@vitest/ui": "^1.0.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.3.0",
"vitest": "^1.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=v18.17.0"
}
}