-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
{
"name": "root",
"private": true,
"description": "A monorepo for Javascript JSON:API utility packages.",
"repository": "https://github.com/rmarganti/json-api",
"scripts": {
"dev": "lerna run --parallel dev",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"prepare-release": "yarn build && lerna version",
"publish-release": "yarn run publish:packages && yarn run publish:docs",
"publish:docs": "gh-pages -d docs --repo https://[email protected]/rmarganti/json-api.git",
"publish:packages": "lerna publish from-git --ignore-scripts --yes --pre-dist-tag next"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@testing-library/react": "^9.2.0",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/pluralize": "^0.0.29",
"@types/ramda": "^0.26.25",
"@types/react": "^16.9.3",
"@types/react-dom": "^16.9.1",
"@types/react-redux": "^7.1.4",
"@types/styled-components": "^4.1.19",
"axios-mock-adapter": "^1.17.0",
"docz": "^1.3.2",
"docz-theme-default": "^1.2.0",
"faker": "^4.1.0",
"gh-pages": "^2.2.0",
"husky": "^3.0.7",
"lerna": "^3.16.4",
"parcel": "^1.12.3",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.6.3"
},
"version": "0.0.0"
}