-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "nancy.js",
"version": "0.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build-storybook": "turbo run build-storybook",
"changeset": "changeset",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,json,css,sass,scss,less,html,yml,yaml}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint-staged": "lint-staged",
"prepare": "is-ci || husky install",
"publish-packages": "turbo run lint && changeset version && turbo run build && changeset publish",
"storybook": "turbo run storybook",
"test": "turbo run test",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@nanlabs/eslint-config-ts": "*",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"turbo": "^1.5.5"
},
"dependencies": {
"tsup": "^6.2.3"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.17.0"
},
"packageManager": "[email protected]"
}