-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.99 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
{
"name": "pull-request-center",
"version": "0.0.0",
"private": true,
"homepage": "./",
"scripts": {
"clean": "rimraf build *.vsix",
"start": "cross-env HTTPS=true react-scripts start",
"build": "cross-env NODE_ENV=production react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"redux-devtools": "redux-devtools --hostname=localhost --port=8000",
"package": "npm run clean && npm run build && tfx extension create --root ./ --output-path ./azure-devops-pull-request-center.vsix",
"package-beta": "npm run clean && npm run build && tfx extension create --root ./ --output-path ./azure-devops-pull-request-center-beta.vsix --manifest-globs ./vss-extension.json --overrides-file ./vss-extension.beta.json",
"package-dev": "npm run clean && npm run build && tfx extension create --root ./ --output-path ./azure-devops-pull-request-center-develop.vsix --manifest-globs ./vss-extension.json --overrides-file ./vss-extension.dev.json",
"lint": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write . **/*.{ts,tsx,html,css,json}"
},
"dependencies": {
"@fluentui/react": "^8.48.1",
"@reduxjs/toolkit": "^1.7.1",
"fast-equals": "^2.0.4",
"react": "^17.0.2",
"react-app-polyfill": "^3.0.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-scripts": "^5.0.0",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@redux-devtools/cli": "^1.0.0-7",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.21",
"@types/react-router-dom": "^5.3.2",
"@types/redux-mock-store": "^1.0.2",
"@types/remote-redux-devtools": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.1",
"@typescript-eslint/typescript-estree": "^5.8.0",
"azure-devops-extension-api": "1.153.2",
"azure-devops-extension-sdk": "^2.0.11",
"azure-devops-ui": "^2.167.28",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2",
"sass": "^1.48.0",
"tfx-cli": "^0.9.3",
"typescript": "^4.5.4"
},
"overrides": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"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"
]
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(azure-devops-ui)/)"
]
}
}