-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.22 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "routes-gen-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"repository": {
"url": "https://github.com/sandulat/routes-gen"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"push": "pre-push && changeset publish && post-push",
"release": "node scripts/publish.js"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.7",
"esbuild": "^0.14.10",
"esbuild-jest": "^0.5.0",
"fs-extra": "^10.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rollup": "^2.63.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-esbuild": "^4.8.2",
"ts-jest": "^27.1.2",
"turbo": "latest",
"typescript": "^4.5.4"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"dev": {
"cache": false
}
}
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"dependencies": {
"@changesets/cli": "^2.21.0"
}
}