-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.56 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.56 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@itwin/synchronization-report-react",
"version": "2.3.6",
"files": [
"dist"
],
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./style.css": "./dist/style.css",
"./*": "./*"
},
"typings": "./dist/index.d.ts",
"dependencies": {
"@itwin/itwinui-icons-color-react": "^2.0.0",
"@itwin/itwinui-icons-react": "^2.0.0",
"@itwin/itwinui-react": "^3.0.0",
"@microsoft/applicationinsights-react-js": "^17.0.2",
"@microsoft/applicationinsights-web": "^3.0.5",
"classnames": "^2.3.1"
},
"devDependencies": {
"@cypress/react": "^8.0.0",
"@cypress/vite-dev-server": "^2.2.1",
"@types/node": "^14.14.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/reactour": "1.18.4",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitejs/plugin-react": "^1.0.0",
"beautiful-react-hooks": "^1.0.2",
"cypress": "^13.6.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fast-glob": "^3.2.5",
"husky": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"typescript": "^4.8.4",
"vite": "^3.2.7",
"vite-plugin-svgr": "^3.2.0"
},
"scripts": {
"start": "vite",
"build": "tsc --noEmit && vite build",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"build:package": "yarn clean && yarn build && yarn build:types",
"clean": "rimraf dist",
"serve": "vite preview",
"test": "cypress open-ct",
"test:ci": "cypress run-ct --quiet",
"lint": "eslint --ext .tsx,.ts --fix src/*/**/*.{js,ts,tsx}",
"lint:fix": "yarn lint && yarn lint:copyright --fix */**/*.{js,ts,tsx,scss}",
"lint:copyright": "node ./scripts/copyrightLinter.js",
"format": "prettier --write src"
},
"resolutions": {
"minimist": "1.2.6",
"semver-regex": "3.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,js,scss}": [
"prettier --write",
"yarn lint:copyright --fix"
],
"*.{tsx,ts}": "eslint --fix"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@3.1.0"
}