-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
91 lines (91 loc) · 2.79 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
{
"name": "vsts-teams-calendar",
"version": "2.0.0",
"description": "Track events important to your team, view and manage days off, quickly see when sprints start and end, and more.",
"keywords": [
"vsts",
"tfs",
"extension",
"calendar",
"extensions",
"Azure DevOps",
"Visual Studio Team Services"
],
"author": "Microsoft",
"contributors": [
{
"name": "Trevor Gau",
"email": "[email protected]"
},
{
"name": "Hailey Johnson"
},
{
"name": "Derrick Marcey",
"email": "[email protected]"
},
{
"name": "Serkan Inci",
"email": "[email protected]"
},
{
"name": "Ruturaj Hagawane",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/vso-team-calendar.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vso-team-calendar/issues"
},
"homepage": "https://github.com/Microsoft/vso-team-calendar#readme",
"scripts": {
"clean": "rimraf ./dist",
"compile": "npm run clean && webpack --config webpack.config.js",
"compile:dev": "npm run clean && webpack --mode development --config webpack.config.js",
"build:release": "npm run compile",
"build:dev": "npm run compile:dev && npm run postbuild",
"postbuild": "npm run package:dev -- --rev-version",
"package:dev": "node ./scripts/packageDev",
"package:release": "node ./scripts/packageRelease",
"package-extension": "tfx extension create --manifest-globs azure-devops-extension.json src/*.json",
"publish-extension": "tfx extension publish --manifest-globs azure-devops-extension.json src/*.json",
"dev:webpack": "webpack --watch",
"dev": "webpack-dev-server --hot --progress --static ./ --https --port 8888",
"dev:http": "webpack-dev-server --progress --static ./ --port 8888"
},
"dependencies": {
"@fullcalendar/core": "^4.1.0",
"@fullcalendar/daygrid": "^4.1.0",
"@fullcalendar/interaction": "^4.1.0",
"@fullcalendar/react": "^4.1.0",
"@fullcalendar/timegrid": "^4.1.0",
"azure-devops-extension-api": "^1.157.0",
"azure-devops-extension-sdk": "^2.0.11",
"azure-devops-ui": "~1.159.0",
"moment": "^2.29.4",
"react": "~16.8.1",
"react-dom": "~16.8.1"
},
"devDependencies": {
"@types/react": "~16.8.2",
"@types/react-dom": "~16.8.0",
"base64-inline-loader": "^2.0.1",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.2.4",
"file-loader": "^6.2.0",
"rimraf": "^3.0.2",
"sass": "^1.55.0",
"sass-loader": "^10.1.1",
"style-loader": "^1.2.1",
"tfx-cli": "^0.12.0",
"ts-loader": "~5.2.2",
"typescript": "^3.9.10",
"webpack": "^5.72.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}