-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 981 Bytes
/
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": "cc-multiverse",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "npx husky install",
"build": "turbo run build",
"build:static": "turbo run build:static",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"eslint": "turbo run eslint",
"type-check": "turbo run type-check",
"storybook": "turbo run storybook",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@cc/eslint-config": "file:packages/eslint-config",
"@cc/jest-config": "file:packages/jest-config",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"husky": "^8.0.1",
"prettier": "latest",
"turbo": "latest",
"webpack": "^5.74.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}