-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.41 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
{
"name": "d93-release-notes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run lint && npm run clean && npm run webpack",
"webpack": "webpack --progress --colors --config webpack.config.js --output-path ./dist -p",
"postbuild": "npm run package",
"package": "tfx extension create --rev-version --manifest-globs ./vss-extension.json",
"gallery-publish": "tfx extension publish --rev-version",
"clean": "rimraf ./dist && rimraf ./*.vsix",
"lint": "tslint -c tslint.json 'src/*.ts'"
},
"keywords": [],
"author": "Dmytro Petrovych",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"base64-inline-loader": "^1.1.1",
"css-loader": "^3.2.0",
"node-sass": "^4.12.0",
"promise-polyfill": "^8.1.3",
"requirejs": "^2.3.6",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"tslint": "^5.19.0",
"typescript": "^3.5.3",
"vss-web-extension-sdk": "^5.141.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"azure-devops-extension-api": "^1.154.1",
"azure-devops-extension-sdk": "^2.0.11",
"azure-devops-ui": "^1.157.0",
"moment": "^2.24.0",
"office-ui-fabric-react": "^7.33.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}