-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "granity",
"version": "0.8.0",
"author": "Fabrice Garrec",
"license": "MIT",
"homepage": "https://github.com/fgarrec0397/Granity#readme",
"description": "A React Three Fiber widgets based game engine.",
"repository": {
"type": "git",
"url": "https://github.com/fgarrec0397/Granity"
},
"scripts": {
"audit": "turbo run audit",
"audit:fix": "turbo run audit:fix",
"build": "npm run patch && turbo run build --concurrency=1",
"dev": "turbo run dev",
"test": "turbo run test --concurrency=1",
"test:coverage": "turbo run test:coverage",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"format": "turbo run format",
"prepare": "husky install",
"patch": "patch-package",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"storybook": "turbo run storybook",
"update:check": "turbo run update:check --concurrency=1",
"update": "turbo run update --concurrency=1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"husky": "^8.0.3",
"standard-version": "^9.5.0",
"turbo": "^1.7.4"
},
"dependencies": {
"patch-package": "^6.5.1",
"workspaces": "^0.1.0"
},
"workspaces": [
"packages/*",
"apps/*"
]
}