This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.42 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
71
72
73
74
{
"name": "@itwin/demo-portal-repo",
"private": true,
"workspaces": {
"packages": [
"packages/**"
],
"nohoist": [
"**"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"cross-env": "7.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-simple-import-sort": "^4.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.2.0",
"prettier": "1.19.1",
"serve": "^12.0.0",
"start-server-and-test": "^1.12.6",
"stylelint": "^13.2.0",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-sass-guidelines": "^6.1.0",
"stylelint-prettier": "^1.1.1",
"stylelint-scss": "^3.12.1",
"typescript": "^3.8.0",
"yarn": "^1.22.10"
},
"scripts": {
"build": "yarn --cwd packages/app build",
"start": "yarn --cwd packages/app start",
"test": "yarn --cwd packages/app test",
"optest": "yarn --cwd packages/opTestsApp test",
"optest:ci": "cross-env NODE_ENV=test start-server-and-test serve:static http://localhost:3000 optest",
"serve:static": "serve -s packages/app/build -l 3000 --cors",
"lint": "lint-staged --verbose",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js --config ./.eslintrc.ts.autofix.json --ignore-path ./.eslintignore --fix",
"node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js --config ./.eslintrc.ts.json --ignore-path ./.eslintignore --color",
"node ./scripts/copyright-linter.js --"
],
"*.{md,json}": [
"prettier --write --config .prettierrc --ignore-path .prettierignore"
],
"*.{scss,css}": [
"stylelint --fix --config .stylelintrc --allow-empty-input",
"node ./scripts/copyright-linter.js --"
]
},
"resolutions": {
"faye-websocket": "^0.11.0",
"ua-parser-js": "^0.7.22",
"dompurify": "^2.1.0",
"object-path": "^0.11.5",
"axios": "0.21.2",
"immer": "^9.0.6",
"@itwin/itwinui-css": "0.58.0",
"@itwin/itwinui-react": "1.38.1"
}
}