-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "azure-webapp-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for a functioning Azure Webapp using Typescript+React frontend and Typescript+Express backend.",
"main": "bin/Index.js",
"scripts": {
"build:client": "gulp client",
"build:server": "gulp server",
"build": "npm run build:server && npm run build:client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/somkun/AzureWebappBoilerplate.git"
},
"author": "Andrew Nichols",
"license": "MIT",
"bugs": {
"url": "https://github.com/somkun/AzureWebappBoilserplate/issues"
},
"homepage": "https://github.com/somkun/AzureWebappBoilserplate#readme",
"devDependencies": {
"@types/express": "^4.0.35",
"@types/office-js": "0.0.37",
"@types/react": "^15.0.9",
"@types/react-dom": "^0.14.23",
"@types/superagent": "^2.0.36",
"awesome-typescript-loader": "^3.0.4-rc.2",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.4.1",
"gulp-typescript": "^3.1.4",
"mobx": "^3.1.2",
"mobx-react": "^4.1.1",
"node-libs-browser": "^2.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"source-map-loader": "^0.1.6",
"superagent": "^3.5.0",
"typescript": "^2.1.6",
"webpack": "^1.14.0",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"express": "^4.14.1"
}
}