-
Notifications
You must be signed in to change notification settings - Fork 205
/
Copy pathpackage.json
172 lines (172 loc) · 5.43 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "webtemplatestudio-local",
"displayName": "Web Template Studio (local)",
"description": "Web Template Studio enables developers to quickly scaffold full-stack web applications with cloud services.",
"version": "0.0.0-UNTRACKEDVERSION",
"publisher": "WASTeamAccount",
"aiKey": "###AIKEY###",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#eff1f3",
"theme": "light"
},
"icon": "resources/WebTSLogoSquare.png",
"keywords": [
"Open Source",
"Full Stack",
"Web Application",
"Scaffolding",
"Templates",
"Boilerplate",
"React",
"Angular",
"Vue.js",
"Node",
"ASP.NET",
"Express",
"Flask",
"Azure Services",
"Azure Cosmos DB",
"Azure App Service",
"Moleculer",
"MoleculerJS",
"React Native",
"React Native Windows"
],
"preview": true,
"homepage": "https://github.com/Microsoft/WebTemplateStudio/blob/master/README.md",
"bugs": {
"url": "https://github.com/Microsoft/WebTemplateStudio/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/WebTemplateStudio",
"vsce": "^1.57.1",
"vscode-extension-telemetry": "^0.1.1",
"vscode-nls": "^4.0.0"
},
"activationEvents": [
"onCommand:webTemplateStudioExtension.web.createApp.local",
"onCommand:webTemplateStudioExtension.web.deployApp.local",
"onCommand:webTemplateStudioExtension.reactNative.createApp.local"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "webTemplateStudioExtension.web.createApp.local",
"title": "%webTemplateStudioExtension.commands.web.createApp%",
"category": "%webTemplateStudioExtension.commands.category%"
},
{
"command": "webTemplateStudioExtension.web.deployApp.local",
"title": "%webTemplateStudioExtension.commands.web.deployApp%",
"category": "%webTemplateStudioExtension.commands.category%"
},
{
"command": "webTemplateStudioExtension.reactNative.createApp.local",
"title": "%webTemplateStudioExtension.commands.reactNative.createApp%",
"category": "%webTemplateStudioExtension.commands.category%"
}
],
"configuration": {
"type": "object",
"title": "%webTemplateStudioExtension.commands.category%",
"properties": {
"wts.changeSaveToLocation": {
"type": "string",
"default": "",
"description": "Set default project location for your project."
},
"wts.enablePreviewMode": {
"type": "boolean",
"default": false,
"description": "Enable upcoming features; Warning: may cause stability issues."
},
"wts.legalResources": {
"type": "null",
"markdownDescription": "[Privacy Link](https://privacy.microsoft.com/en-US/privacystatement) | [Terms of Use](https://www.microsoft.com/en-us/legal/intellectualproperty/copyright/default.aspx)"
}
}
}
},
"scripts": {
"webpack-prod": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"build": "tsc -p tsconfig.json",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts",
"prettier": "prettier --check src/**/*.ts",
"prettier:format": "prettier --write src/**/*.ts",
"test": "npm run compile && node ./out/test/runTest.js",
"template-tests": "node ./out/scripts/generate-test && node ./out/scripts/run-tests",
"createVsixPackage": "vsce package --yarn -o \"./../../dist/webts-0.0.0-UNTRACKEDVERSION.vsix\""
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/vscode": "^1.38",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"del": "^5.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"event-stream": "^4.0.1",
"kind-of": "^6.0.3",
"mocha": "^7.2.0",
"prettier": "^2.2.1",
"run-sequence": "^2.2.1",
"ts-loader": "^9.2.3",
"typescript": "^3.9.3",
"vscode-nls-dev": "^3.3.1",
"vscode-test": "^1.4.0",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-filter-warnings-plugin": "^1.2.1"
},
"extensionDependencies": [
"ms-vscode.azure-account",
"ms-azuretools.vscode-azureappservice"
],
"dependencies": {
"@azure/arm-appservice": "^7.0.0",
"@azure/arm-cosmosdb": "^12.1.0",
"@azure/arm-resources": "^4.0.0",
"@azure/arm-subscriptions": "^3.0.0",
"@azure/ms-rest-js": "^2.4.0",
"@azure/ms-rest-nodeauth": "^3.0.9",
"@types/archiver": "^3.1.0",
"@types/fs-extra": "^9.0.1",
"@types/node-fetch": "^2.5.6",
"@types/opn": "^5.5.0",
"@types/request": "^2.48.4",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.2.0",
"archiver": "^4.0.1",
"axios": "^0.21.1",
"fs-extra": "^9.0.0",
"global": "^4.4.0",
"latest-version": "^5.1.0",
"log4js": "^6.3.0",
"node-fetch": "^2.6.1",
"node-fs-extra": "^0.8.2",
"opn": "^6.0.0",
"p-retry": "^4.2.0",
"rimraf": "^3.0.2",
"url-parse": "^1.5.0",
"vsce": "^1.75.0",
"vscode-extension-telemetry": "^0.1.6",
"vscode-nls": "^4.1.2"
}
}