forked from davidkpiano/node-azure-mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "azure-mvc",
"version": "1.0.0",
"description": "Example application for creating an MVC Express + Node + TypeScript app and deploying it to Azure",
"main": "index.js",
"scripts": {
"start": "npm run build-ts && npm run serve",
"serve": "node dist/index.js",
"watch": "npm run watch-ts & npm run serve-dev",
"serve-dev": "./node_modules/.bin/nodemon dist/index.js",
"build-ts": "./node_modules/.bin/tsc",
"watch-ts": "./node_modules/.bin/tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/node-azure-mvc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidkpiano/node-azure-mvc/issues"
},
"homepage": "https://github.com/davidkpiano/node-azure-mvc#readme",
"dependencies": {
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/express-handlebars": "0.0.30",
"@types/hbs": "^4.0.0",
"@types/mongoose": "^5.2.17",
"@types/pug": "^2.0.4",
"@types/react": "^16.4.14",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-react-views": "^0.10.5",
"hbs": "^4.0.1",
"mongoose": "^5.2.17",
"pug": "^2.0.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"typescript": "^3.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"express-openapi": "^2.0.7",
"mocha": "^5.2.0",
"nodemon": "^1.18.4"
}
}