-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.01 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
98
99
100
101
{
"name": "adzo-embedded-documents",
"version": "1.0.0",
"description": "Azure DevOps Embedded Documents",
"keywords": [
"extensions",
"Azure DevOps",
"Visual Studio Team Services"
],
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./*.vsix",
"build": "tsc && vite build",
"postinstall": "patch-package",
"serve": "vite serve",
"package-extension": "tfx extension create --manifest-globs manifest.common.json manifest.prod.json src/features/**/*.json",
"package-extension:dev": "tfx extension create --manifest-globs manifest.common.json manifest.dev.json src/features/**/*.json",
"publish-extension": "tfx extension publish --manifest-globs manifest.common.json manifest.prod.json src/features/**/*.json",
"publish-extension:dev": "tfx extension publish --manifest-globs manifest.common.json manifest.dev.json src/features/**/*.json",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"preview": "vite preview"
},
"dependencies": {
"@microsoft/applicationinsights-web": "2.8.10",
"azure-devops-extension-api": "1.158.0",
"azure-devops-extension-sdk": "2.0.11",
"azure-devops-ui": "2.167.60",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-fast-compare": "3.2.0",
"usehooks-ts": "2.9.1",
"uuid": "9.0.0"
},
"override": {
"azure-devops-extension-api": {
"version": "$azure-devops-extension-api"
},
"azure-devops-extension-sdk": {
"version": "$azure-devops-extension-sdk"
},
"azure-devops-ui": {
"version": "$azure-devops-ui"
},
"uuid": {
"version": "$uuid"
},
"tslib": {
"version": "$tslib"
},
"async": {
"version": "$async"
},
"react": {
"version": "$react"
},
"react-dom": {
"version": "$react-dom"
}
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.4.0",
"@types/node": "17.0.35",
"@types/react": "17.0.53",
"@types/react-dom": "17.0.19",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"@vitejs/plugin-legacy": "1.8.2",
"@vitejs/plugin-react": "1.3.2",
"@vitest/coverage-c8": "0.28.5",
"async": "3.2.4",
"c8": "7.13.0",
"eslint": "8.34.0",
"eslint-config-node": "4.1.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jsdom": "21.1.0",
"patch-package": "6.5.1",
"prettier": "2.8.4",
"rimraf": "4.1.2",
"rollup-plugin-visualizer": "5.9.0",
"tfx-cli": "0.12.0",
"tslib": "2.5.0",
"typescript": "4.9.5",
"typescript-plugin-css-modules": "4.2.1",
"vite": "2.9.15",
"vite-plugin-eslint": "1.8.1",
"vitest": "0.28.5"
}
}