-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
{
"name": "react-namespace",
"version": "0.0.0",
"private": true,
"description": "state manager for react. It is a simple and powerful state manager that uses the Proxy API to manage the state of your application. inspired by radix-ui's scopeContext and create Context wrapper",
"keywords": [
"react",
"state",
"manager",
"management",
"proxy",
"store",
"scope",
"context"
],
"author": "lodado",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/lodado/react-namespace/issues"
},
"homepage": "https://github.com/lodado/react-namespace",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
"create-new-project": "node ./generatePackages",
"storybook": "turbo run dev --no-cache --continue",
"build": "turbo run build --concurrency=5 --filter=!storybook-docs",
"build-storybook": "turbo run build --filter=!storybook-docs && turbo run build-storybook --concurrency=5",
"clean": "turbo run clean && rm -rf node_modules",
"test": "turbo run test --concurrency=5",
"test:e2e": "turbo run test:e2e --concurrency=5",
"lint": "turbo run lint --concurrency=5 -- --cache --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "turbo run build --filter=!@lodado/react-namespace-storybook-docs && changeset version && changeset publish --concurrency=5",
"changeset": "changeset",
"patch-notes": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"eslint": "^8.57.0",
"eslint-config-react-namespace": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.8.8",
"turbo": "1.10.15"
},
"engines": {
"node": ">=18.19.0",
"pnpm": ">=9.0.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "pnpm lint"
}
}