forked from mohitbagra/azure-devops-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.71 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
{
"license": "MIT",
"private": true,
"main": "webpack.config.js",
"version": "1.0.0",
"scripts": {
"eslint:fix": "eslint --fix \"**/*.+(ts|tsx)\"",
"eslint:check": "eslint \"**/*.+(ts|tsx)\"",
"prettier:fix": "prettier --write \"**/*.+(ts|tsx|scss|css)\"",
"prettier:check": "prettier --check \"**/*.+(ts|tsx|scss|css)\"",
"clean": "rimraf dist",
"build": "npm run clean && mkdir dist && webpack --display-error-details --progress --colors --output-path ./dist -p",
"start": "webpack-dev-server -d --hot --https --progress --colors --content-base ./src/ --port 8888",
"postbuild": "node ./scripts/package"
},
"devDependencies": {
"@types/mousetrap": "1.6.2",
"@types/q": "1.5.1",
"@types/react": "16.9.44",
"@types/react-beautiful-dnd": "11.0.2",
"@types/react-dom": "16.9.8",
"@types/react-redux": "7.1.0",
"@types/recharts": "1.1.17",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"base64-inline-loader": "1.1.1",
"copy-webpack-plugin": "5.0.3",
"css-loader": "3.0.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"file-loader": "4.0.0",
"node-sass": "4.12.0",
"prettier": "^2.0.2",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"sass-resources-loader": "2.0.1",
"style-loader": "0.23.1",
"tfx-cli": "0.7.6",
"ts-loader": "6.0.4",
"typescript": "3.5.2",
"webpack": "4.35.0",
"webpack-cli": "3.3.5",
"webpack-dev-server": "3.7.2",
"webpack-merge": "4.2.1"
},
"dependencies": {
"azure-devops-extension-api": "1.157.0",
"azure-devops-extension-sdk": "2.0.11",
"azure-devops-ui": "2.166.93",
"date-fns": "1.30.1",
"es6-promise": "4.2.8",
"immer": "3.1.3",
"markdown-it": "8.4.2",
"mousetrap": "1.6.3",
"office-ui-fabric-react": "^5.112.1004",
"q": "1.5.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.1.0",
"react-beautiful-dnd": "11.0.4",
"recharts": "1.6.2",
"redux": "4.0.1",
"redux-dynamic-modules": "3.5.0",
"redux-dynamic-modules-saga": "3.5.0",
"redux-saga": "1.0.3",
"reselect": "4.0.0",
"roosterjs-react": "0.0.71",
"tslib": "~1.7.1"
}
}