-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "xstate-marionettist-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/core",
"packages/cypress",
"packages/playwright",
"packages/puppeteer",
"examples/app",
"examples/real-world"
]
},
"author": "John de Stigter <johndestigter@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rjdestigter/xstate-marionettist.git"
},
"bugs": {
"url": "https://github.com/rjdestigter/xstate-marionettist/issues"
},
"dependencies": {
"@manypkg/cli": "^0.16.1",
"typescript": "^4.2.0-dev.20201123",
"wait-on": "^5.2.0"
},
"scripts": {
"preinstall": "node ./scripts/ensure-yarn.js",
"postinstall": "manypkg check",
"clean:packages": "yarn workspaces run clean",
"build": "tsc -b ./tsconfig.monorepo.json",
"build:example": "cd examples/app && yarn build",
"link:core": "cd packages/core && yarn link",
"link:cypress": "cd packages/cypress && yarn link",
"link:playwright": "cd packages/playwright && yarn link",
"link:puppeteer": "cd packages/puppeteer && yarn link",
"link:all": "yarn link:core && yarn link:cypress && yarn link:playwright && yarn link:puppeteer",
"puppeteer": "cd examples/app && yarn e2e:puppeteer",
"playwright": "cd examples/app && yarn e2e:playwright",
"test": "concurrently \"yarn build\" \"yarn build:example\" && concurrently \"yarn puppeteer\" \"yarn playwright\"",
"test:ci": "CI=true yarn test",
"serve:cypress": "cd examples/app && yarn serve:cypress & wait-on http://localhost:7777"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}