-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 940 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
37
38
39
40
{
"name": "cunningham",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"test-ci": "turbo run test-ci",
"lint": "turbo run lint",
"deploy": "turbo run deploy",
"format": "prettier --write \"**/*.{ts,tsx,md,json,cjs,js}\"",
"predeploy-ghpages": "./scripts/predeploy-ghpages",
"deploy-ghpages": "storybook-to-ghpages --existing-output-dir ./ghpages-output"
},
"devDependencies": {
"cross-env": "7.0.3",
"make-dir-cli": "4.0.0",
"prettier": "3.3.3",
"turbo": "2.0.14"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@changesets/cli": "2.27.7"
},
"packageManager": "[email protected]",
"resolutions": {
"@testing-library/dom": "10.4.0"
},
"volta": {
"node": "20.16.0",
"yarn": "1.22.22"
}
}