-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.48 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
64
65
66
67
68
69
70
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/ui-extensions-core",
"packages/ui-extensions-react"
],
"devDependencies": {
"@doist/eslint-config": "^7.1.0",
"@doist/prettier-config": "^3.0.5",
"@doist/tsconfig": "^1.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^27.0.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"autoprefixer": "^9.8.6",
"better-npm-audit": "^3.5.1",
"chokidar-cli": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-webpack": "^0.13.1",
"husky": "^4.2.5",
"jest": "^27.5.1",
"nock": "^13.0.2",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"prettier": "^2.1.2",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-styles": "^4.0.0",
"ts-jest": "^27.1.3",
"ts-loader": "^8.1.0",
"tslib": "^2.2.0",
"typescript": "4.7.4",
"yalc": "^1.0.0-pre.53"
},
"prettier": "@doist/prettier-config",
"scripts": {
"format-check": "npx prettier --check .",
"format-fix": "npx prettier --write .",
"bootstrap-dev": "npm install",
"bootstrap-dev:hard": "npm run reset && npm run bootstrap-dev",
"bootstrap-ci:common": "npm ci",
"bootstrap-ci:react": "npm run bootstrap-ci:common",
"build-core": "npm run build --workspace=packages/ui-extensions-core",
"build-react": "npm run build --workspace=packages/ui-extensions-react",
"build-common": "npm run build-core",
"reset": "npm run --workspaces reset && rimraf node_modules",
"test": "npm run --workspaces test",
"audit": "npx better-npm-audit audit --level=moderate --production",
"integrity-check": "npm run --workspaces integrity-check"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,html,yml,yaml,md}": "prettier --check"
}
}