-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "oolio",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": "@hitz-group/monorepo",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"clean": "turbo run clean --parallel",
"dev": "turbo run dev --parallel --no-cache",
"lint": "turbo run lint",
"prepare": "is-ci || husky install",
"purge": "turbo run clean && rimraf ./**/node_modules node_modules",
"rebuild": "rimraf ./node_modules/.cache/turbo && npm run build",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:staged": "pretty-quick --staged",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"turbo": "^1.1.3"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"volta": {
"node": "16.14.0",
"npm": "8.3.1",
"yarn": "1.22.17"
},
"packageManager": "yarn@1.22.17"
}