-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.53 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
{
"name": "@trixtateam/trixta",
"version": "1.0.0",
"description": "Trixta monorepo",
"author": "jacqueswho <[email protected]>",
"private": true,
"workspaces": {
"packages": ["packages/core","packages/rjsf"]
},
"scripts": {
"dev": "rollup -c --watch",
"link:phoenix-to-redux": "npm link @trixtateam/phoenix-to-redux",
"build:libs": "yarn workspaces run build",
"lint:ts": "yarn workspaces run tsc --noEmit",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"prepare": "yarn run build:libs && husky install",
"clean": "yarn clean:modules && yarn clean:cache",
"clean:cache": "yarn cache clean",
"clean:modules": "rimraf node_modules && rimraf packages/*/node_modules",
"clean:builds": "rimraf packages/*/build && rimraf packages/*/types",
"release": "multi-semantic-release",
"test": "yarn workspaces run test",
"test:clean": "yarn workspaces run test:clean",
"test:watch": "yarn workspaces run test:watch",
"test:cov": "yarn workspaces run test:cov",
"test:no-cov": "yarn workspaces run test:no-cov",
"test:coveralls": "yarn workspaces run test:coveralls",
"test:cov-badges": "yarn workspaces run test:cov-badges",
"test:staged": "yarn workspaces run test:staged",
"storybook": "yarn workspace @trixtateam/story-docs storybook",
"storybook-docs": "yarn workspace @trixtateam/story-docs storybook-docs",
"build-storybook": "yarn workspace @trixtateam/story-docs build",
"build-storybook-docs": "yarn workspace @trixtateam/story-docs build-storybook-docs",
"deploy-storybook": "yarn workspace @trixtateam/story-docs deploy-storybook",
"publish:libs": "yarn workspaces run publish:lib"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"husky": "^8.0.0",
"lerna-alias": "^3.0.2",
"npm-run-all": "^4.1.5",
"multi-semantic-release": "^3.0.1",
"pre-commit": "1.2.2",
"prettier": "2.0.5",
"react": "^16.14.0",
"react-app-polyfill": "~2.0.0",
"react-bootstrap": "^1.4.0",
"react-dom": "^16.14.0",
"react-json-view": "^1.21.3",
"react-test-renderer": "^16.14.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"typescript": "~4.1.5"
}
}