forked from DeminMaxim/CodeStream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.7 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
{
"name": "codestream.visualstudio",
"version": "1.0.0",
"description": "CodeStream for Visual Studio",
"main": "index.js",
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"analyze": "webpack --env analyze=true",
"build": "webpack --env development=true",
"bundle": "npm install --no-save && npm run agent:bundle && webpack --env production=true",
"bundle:ci": "npm run clean:ci && npm run bundle",
"clean:ci": "git clean -xdf -e vs/licenses/**/* && npm run webview:clean:ci && npm run agent:clean:ci",
"rebuild": "npm install --no-save && npm run agent:rebuild && npm run build",
"watch": "webpack --watch --env development=true",
"agent:build": "pushd \"../shared/agent\" && npm run build && popd",
"agent:bundle": "pushd \"../shared/agent\" && npm run bundle && popd",
"agent:clean:ci": "pushd \"../shared/agent\" && npm run clean:ci && popd",
"agent:pkg": "pushd \"../shared/agent\" && npm run pkg-vs && popd",
"agent:rebuild": "pushd \"../shared/agent\" && npm run rebuild && popd",
"agent:test": "pushd \"../shared/agent\" && npm run test && popd",
"agent:watch": "pushd \"../shared/agent\" && npm run watch && popd",
"webview:analyze": "webpack --env analyzeWebview=true",
"webview:clean:ci": "pushd \"../shared/ui\" && npm run clean:ci && popd",
"preinstall": "pushd \"../shared/ui\" && npm install --no-save && popd"
},
"dependencies": {
"core-js": "2.6.9"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.7.2",
"@babel/plugin-proposal-class-properties": "7.7.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-proposal-optional-chaining": "7.13.8",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@babel/preset-typescript": "7.7.2",
"@babel/runtime": "7.7.2",
"@types/keytar": "4.4.2",
"@types/lodash-es": "4.17.6",
"@types/node": "10.1.4",
"@types/node-fetch": "2.6.1",
"@types/uuid": "3.4.5",
"babel-loader": "8.2.3",
"babel-plugin-styled-components": "2.0.2",
"circular-dependency-plugin": "5.0.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "6.5.1",
"fork-ts-checker-webpack-plugin": "5.2.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "5.5.0",
"less": "4.1.2",
"less-loader": "10.2.0",
"mini-css-extract-plugin": "2.4.5",
"prettier": "1.19.1",
"terser-webpack-plugin": "5.3.1",
"ts-loader": "9.2.7",
"tsconfig-paths-webpack-plugin": "3.5.2",
"tslint": "6.1.3",
"tslint-loader": "3.5.4",
"typescript": "4.5.4",
"webpack": "5.70.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2"
}
}