-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "deployment-nodeapp-azure",
"author": "irvv17",
"version": "0.0.1",
"description": "express-ts-app initialised with create-express-typescript-application, using it in a deployment-nodeapp-azure example.",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node ./build/src/index.js",
"dev": "ts-node ./src/index.ts",
"dev:nodemon": "nodemon -w src -e ts,json -x ts-node ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"typescript"
],
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"@types/node": "^14.17.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.3.2"
},
"dependencies": {
"cors": "^2.8.5",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"helmet": "^4.6.0",
"morgan": "^1.10.0"
}
}