-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
37 lines (37 loc) · 1018 Bytes
/
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
{
"name": "express-typescript",
"version": "1.0.0",
"description": "This is a simple expressJS application template using NodeJS and Typescript",
"main": "dist/index.js",
"scripts": {
"start": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"dev": "node .",
"dev:start": "npm-run-all build dev",
"build": "npm-run-all clean lint tsc copy-assets",
"copy-assets": "ts-node tools/copyAssets",
"tsc": "tsc",
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json"
},
"dependencies": {
"ejs": "^3.1.3",
"express": "^4.17.1",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"@types/shelljs": "0.7.9",
"shelljs": "0.8.4",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"keywords": [],
"author": "",
"license": "ISC"
}