-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.8 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.8 KB
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
{
"name": "@fusebit-int/integrations",
"license": "MIT",
"version": "7.53.1",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@jsonforms/core": "^3.0.0-alpha.1",
"@jsonforms/material-renderers": "^3.0.0-alpha.1",
"@jsonforms/react": "^3.0.0-alpha.1",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.3.10",
"@types/jest": "^27.0.2",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^27.2.2",
"husky": "^7.0.0",
"hygen": "^6.1.0",
"lerna": "^5.6.1",
"nock": "^13.1.3",
"nx": "^14.8.3",
"prettier": "2.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"scripts": {
"prepare": "husky install",
"packages:publish": "./scripts/prepare_publish.sh",
"packages:version": "./scripts/version.sh",
"dev:version": "lerna version --no-git-tag-version prerelease -y --conventional-prerelease",
"prettier:fix": "git ls-tree -r `git branch --show-current` --name-only | grep -E \"\\.[tj]?sx?$|\\.yaml$|\\.json$\" | grep -v assets | grep -v lerna.json | xargs -P 1 prettier --write",
"prettier:check": "git ls-tree -r `git branch --show-current` --name-only | grep -E \"\\.[tj]?sx?$|\\.yaml$|\\.json$\" | grep -v assets | grep -v lerna.json | xargs -P 1 -I \"{}\" sh -c '[ -f {} ] && echo {} || true' | xargs prettier --check",
"style:fix": "lerna run lint:fix && lerna run prettier:fix",
"serve:integration": "./scripts/serve_entity.sh integration",
"serve:connector": "./scripts/serve_entity.sh connector",
"clean": "rm ./**/tsconfig.tsbuildinfo; rm -rf ./**/libc;"
},
"dependencies": {
"superagent": "^6.1.0"
}
}