forked from nimatra/OutlookVSTS
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 KB
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
{
"name": "vsts-addin-for-outlook",
"engines": {
"node": ">=0.12.0"
},
"version": "1.0.0",
"description": "An add-in for turning emails into bugs",
"main": "index.js",
"scripts": {
"build": "npm run webpack",
"typings": "node_modules\\.bin\\tsd.cmd install",
"webpack": "node_modules\\.bin\\webpack.cmd",
"rimraf": "node_modules\\.bin\\rimraf.cmd node_modules",
"start": "node src\\server\\server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Microsoft",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/annich-ms/OutlookVSTS"
},
"dependencies": {
"@types/jquery": "^2.0.40",
"@types/office-js": "0.0.37",
"@types/react": "^0.14.41",
"@types/react-dom": "^0.14.22",
"@types/react-redux": "^4.4.36",
"@types/react-router": "^3.0.0",
"body-parser": "^1.15.1",
"express": "^4.13.4",
"http": "*",
"https": "*",
"jquery": "^3.1.1",
"jsonwebtoken": "^7.1.9",
"office-ui-fabric-react": "^1.5.5",
"react": "^0.14.7",
"react-contenteditable": "^2.0.2",
"react-dom": "^0.14.7",
"react-dropdown": "^1.0.4",
"react-redux": "^4.1.2",
"react-router": "^2.4.1",
"redux": "^3.1.5",
"redux-thunk": "^2.2.0",
"request": "*",
"request-promise": "^4.1.1",
"rimraf": "^2.5.2",
"source-map": "^0.5.6",
"source-map-loader": "^0.1.6",
"string-to-stream": "^1.1.0",
"tedious": "^1.14.0",
"ts-loader": "^2.0.0",
"tslint": "^3.3.0",
"tslint-loader": "^2.1.0",
"typescript": "^2.1.5",
"webpack": "^1.13.2",
"xml-flow": "^1.0.1"
}
}