-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "zutron-monorepo",
"private": true,
"type": "module",
"homepage": "https://github.com/goosewobbler/zutron",
"license": "MIT",
"scripts": {
"build": "turbo run build --filter=zutron",
"ci": "turbo run format:check test:unit test:e2e:reducers test:e2e:separate-handlers test:e2e:store-handlers",
"ci-linux": "turbo run format:check test:unit test:e2e:reducers test:e2e:separate-handlers test:e2e:store-handlers --concurrency=1",
"ci:e2e:logs": "turbo run logs",
"format": "prettier -w .",
"format:check": "prettier -c .",
"graph:e2e": "tsx ./scripts/create-task-graph.ts ./e2e-graph.png test:unit test:e2e:reducers test:e2e:separate-handlers test:e2e:store-handlers",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goosewobbler/zutron.git"
},
"keywords": [
"zustand",
"electron",
"state-management"
],
"devDependencies": {
"@turbo-version/version": "^0.8.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"shelljs": "^0.8.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3"
},
"lint-staged": {
"**/*.{yml,json,md,ts,tsx,js}": [
"prettier --write"
]
},
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}