forked from cribeiro84/azure-devops-pull-request-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "azure-pull-request-hub",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"azure-devops-extension-api": "~1.153.2",
"azure-devops-extension-sdk": "^2.0.11",
"azure-devops-ui": "^2.167.1",
"office-ui-fabric-react": "^7.165.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "cross-env HTTPS=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"package-release": "npm run clean-build && tfx extension create --root ./ --output-path ./azure-devops-pull-request-manager-hub.vsix --manifests ./vss-extension.json ./vss-extension.release.json ./vss-extension.version.json",
"package-dev": "echo $EXTENSION_VERSION_JSON && npm run clean-build && tfx extension create --root ./ --output-path ./azure-devops-pull-request-manager-hub.vsix --manifests ./vss-extension.json ./vss-extension.dev.json ./vss-extension.version.json",
"clean-build": "del-cli build/**/runtime~main*.map build/**/runtime~main*.js"
},
"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"
]
},
"devDependencies": {
"@types/history": "^4.7.8",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"core-js": "^3.9.1",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
"rename-webpack-plugin": "^2.0.0",
"sass": "^1.52.1",
"tfx-cli": "^0.16.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "^4.2.3"
}
}