-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 2.12 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
{
"name": "cascading-picklists-extenstion",
"version": "1.0.0",
"author": "Anton Kovalyov",
"license": "",
"description": "Extenstion that allows to customize cascading picklists for Azure DevOps.",
"private": true,
"scripts": {
"start": "webpack-dev-server --hot --progress --static ./ --port 44300 --https",
"build-dev": "webpack --progress --config webpack.dev.config.js",
"package-dev": "tfx extension create --manifest-globs azure-devops-extension.json --overrides-file configs/dev.json",
"package-release": "tfx extension create --manifest-globs azure-devops-extension.json --overrides-file configs/release.json",
"build:release": "webpack --progress",
"postbuild": "npm run package",
"package": "tfx extension create --manifest-globs azure-devops-extension.json",
"gallery-publish": "tfx extension publish --rev-version",
"clean": "rimraf ./dist && rimraf ./*.vsix",
"lint": "eslint ."
},
"dependencies": {
"azure-devops-extension-api": "^1.152.3",
"azure-devops-extension-sdk": "^2.0.10",
"azure-devops-ui": "^1.154.1",
"lodash": "^4.17.21",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-monaco-editor": "^0.36.0",
"styled-components": "^4.3.1"
},
"devDependencies": {
"@types/lodash": "^4.14.135",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"css-loader": "^6.7.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"lodash-webpack-plugin": "^0.11.6",
"monaco-editor-webpack-plugin": "^7.0.1",
"prettier": "^1.18.2",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"typescript-styled-plugin": "^0.14.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.11.1"
}
}