-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "utils-root",
"private": true,
"version": "0.0.1",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/ui": "^1.2.2",
"eslint": "^8.56.0",
"rimraf": "^5.0.7",
"shx": "^0.3.4",
"turbo": "1.13.1",
"typescript": "^5.4.4",
"vitest": "^1.2.2"
},
"scripts": {
"build": "turbo run build --filter=./packages/*",
"build:with-apps": "turbo run build",
"build:with-playground": "turbo run build --filter=./packages/* --filter=./apps/transformer-playground",
"watch": "turbo run watch --parallel",
"test": "turbo run test --parallel",
"eslint": "eslint --ext .ts,.tsx,.js,.jsx,.cjs,.mjs . --cache --cache-location=node_modules/.eslintcache",
"lint": "turbo run lint --filter=./packages/*",
"changeset": "changeset",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.5"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^9"
}
}