-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 991 Bytes
/
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
{
"private": true,
"engines": {
"node": ">= 8.0.0"
},
"workspaces": {
"packages": [
"redux-saga-state-machine",
"xstate-to-svg",
"examples/*",
"website"
]
},
"scripts": {
"start": "lerna run start --parallel",
"lint": "lerna run lint",
"test": "jest",
"test:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit",
"build:ci": "lerna run build:ci",
"publish": "lerna publish --conventional-commits --yes",
"compile": "tsc -b examples/kitchen-sink redux-saga-state-machine xstate-to-svg",
"compile:watch": "yarn compile --watch"
},
"devDependencies": {
"lerna": "3.4.3",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"jest-junit": "5.2.0",
"ts-jest": "23.10.4",
"tslint": "5.11.0",
"tslint-config-prettier": "1.16.0",
"tslint-plugin-prettier": "2.0.1",
"tslint-react": "^3.6.0",
"typescript": "3.1.6"
},
"jest-junit": {
"output": "./junit.xml"
}
}