-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "express-typescript-starter-rest",
"version": "0.0.1",
"description": "Boilerplate project for bootstrapping development of a Rest API application with NodeJS and ExpressJS using Typescript as the programming language.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/spinsage/express-typescript-starter-rest.git"
},
"author": "Spinsage",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/spinsage/express-typescript-starter-rest/issues"
},
"homepage": "https://github.com/spinsage/express-typescript-starter-rest#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
}
}