This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.98 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "datadog-to-terraform-js",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/lab": "^4.0.0-alpha.56",
"@types/node": "^12.7.4",
"@types/react": "^16.9.24",
"@types/react-dom": "^16.9.5",
"acorn": "^7.1.1",
"audit-ci": "^4.1.0",
"browserslist": "^4.16.6",
"immer": "^9.0.6",
"react": "^16.9.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.9.0",
"typescript": "^3.6.2"
},
"scripts": {
"audit-ci": "audit-ci --config audit-ignore.json",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test-ci": "CI=true react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix-dry-run src/**/*.ts*",
"lint-fix": "eslint --fix src/**/*.ts*",
"format": "prettier --write 'src/**/*.ts*'",
"format-check": "prettier --check 'src/**/*.ts*'",
"analyse": "sonar-scanner -Dsonar.host.url=https://sonarcloud.io/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"browserslist": "^4.16.6",
"glob-parent": "^5.1.2",
"tar": "^6.1.1",
"trim-newlines": "^4.0.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!src/**/*.test.{js,jsx,ts,tsx}",
"!src/**/index.{js,jsx,ts,tsx}",
"!src/serviceWorker.{js,jsx,ts,tsx}",
"!src/setupTests.ts",
"!src/react-app-env.d.ts"
]
},
"devDependencies": {
"@babel/helper-call-delegate": "^7.10.1",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.4",
"@types/react-copy-to-clipboard": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^2.21.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^4.2.3",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-scripts": "^4.0.0",
"sonarqube-scanner": "^2.5.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint && yarn test-ci"
}
}
}