-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 2.15 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
{
"name": "kanban-board-tools",
"private": true,
"version": "0.0.0",
"main": "webpack.config.js",
"scripts": {
"clean:vsix": "rimraf *.vsix",
"clean": "npm run clean:vsix && rimraf dist",
"dev": "npm run build:dev && webpack-dev-server --config webpack.dev.config.js --hot --progress --static ./dist",
"lint": "tslint -c tslint.json \"src/*.ts\"",
"compile": "npm run clean:vsix && webpack --env=prod --progress --mode production",
"compile:dev": "npm run clean:vsix && webpack --env=dev --progress",
"package:dev": "npm run clean:vsix && node ./scripts/packageDev",
"publish:dev": "npm run package:dev && node ./scripts/packageDev",
"build:dev": "npm run lint && npm run compile:dev ",
"build:release": "npm run lint && npm run compile",
"compile:test": "npm run clean && webpack --progress --env=dev",
"package:test": "npm run compile:test && node ./scripts/packageTest",
"package:release": "npm run clean:vsix && npm run build:release && node ./scripts/packageRelease",
"test": "snyk test && karma start --single-run",
"start:dev": "webpack-dev-server --config webpack.dev.config.js --static ./dist"
},
"dependencies": {
"applicationinsights-js": "^1.0.20",
"azure-devops-extension-api": "~1.157.0",
"azure-devops-extension-sdk": "~2.0.11",
"azure-devops-ui": "~2.164.0",
"react": "~16.13.1",
"react-dom": "~16.13.1",
"telemetryclient-team-services-extension": "^1.0.10"
},
"devDependencies": {
"@types/jquery": "^3.2.18",
"@types/react": "~16.8.2",
"@types/react-dom": "~16.8.0",
"@webpack-cli/serve": "^1.7.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.49.9",
"sass-loader": "^10.1.1",
"style-loader": "^1.2.1",
"tfx-cli": "^0.16.0",
"ts-loader": "^5.2.2",
"tslint": "^5.18.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.9.6",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
}
}