forked from statelyai/xstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "xstate-monorepo",
"private": true,
"description": "Finite State Machines and Statecharts for the Modern Web.",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"preinstall": "node ./scripts/ensure-yarn.js",
"postinstall": "manypkg check",
"clean:packages": "yarn workspaces run clean",
"build": "tsc -b ./tsconfig.monorepo.json",
"test": "jest",
"test:core": "npm test --prefix packages/core",
"dev": "node ./scripts/dev.js",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version && node ./scripts/bump-peer-dep-ranges.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statelyai/xstate.git"
},
"author": "David Khourshid <davidkpiano@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/statelyai/xstate/issues"
},
"homepage": "https://github.com/statelyai/xstate#readme",
"dependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.19.0",
"@manypkg/cli": "^0.16.1",
"@manypkg/get-packages": "^1.1.3",
"@types/jest": "^24.0.23",
"@types/node": "^12.11.1",
"@types/use-subscription": "^1.0.0",
"gh-pages": "^2.0.1",
"husky": "^3.1.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"jsdom": "^14.0.0",
"jsdom-global": "^3.0.2",
"lerna-alias": "3.0.3-0",
"lint-staged": "^8.2.1",
"markdown-it-codesandbox-embed": "^0.1.0",
"patch-package": "^6.2.2",
"prettier": "^2.0.2",
"spawn-command": "0.0.2-1",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"tslint": "^5.11.0",
"typescript": "^4.8.2",
"webpack-dev-middleware": "^3.6.0"
},
"resolutions": {
"**/tslib": "^2.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,mdx}": [
"prettier --write",
"git add"
]
},
"version": "1.19.1"
}