-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"private": true,
"description": "Global state machines in an easy way",
"author": "Pedro Nauck <[email protected]>",
"engines": {
"pnpm": ">=7"
},
"homepage": "https://github.com/pedronauck/storz#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pedronauck/storz.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pedronauck/storz/issues"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"changeset:release": "changeset publish --no-git-tag",
"changeset:version": "changeset version",
"changeset:check": "changeset status --since=main",
"deps:update": "updates -gu && pnpm -r exec updates -gu",
"lint": "run-s lint:check prettier:check",
"lint:check": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "pnpm lint:check --fix",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"test": "pnpm run --filter=app test",
"test:clear": "pnpm -r exec jest --clearCache",
"ts:check": "pnpm -r ts:check",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.4",
"@changesets/get-github-info": "^0.5.1",
"@jest/types": "29.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@types/react-dom": "^18.0.6",
"@types/react": "^18.0.21",
"@xstate/cli": "^0.3.3",
"dotenv": "^16.0.2",
"husky": "^8.0.1",
"jest-environment-jsdom": "29.1.1",
"jest-transform-stub": "^2.0.0",
"jest": "29.1.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"turbo": "^1.5.4",
"typescript": "^4.8.4",
"updates": "^13.1.8"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
],
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}