-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "express-ts-app-boilerplate",
"description": "express-ts-app-boilerplate application.",
"version": "0.0.0",
"author": {
"name": "Narek Hovhannisyan",
"email": "[email protected]",
"url": "https://github.com/narekhovhannisyan"
},
"bugs": {
"url": "https://github.com/narekhovhannisyan/express-ts-app-boilerplate/issues"
},
"contributors": [
{
"name": "Narek Hovhannisyan",
"email": "[email protected]",
"url": "https://github.com/narekhovhannisyan"
}
],
"dependencies": {
"app-root-path": "3.1.0",
"dotenv": "16.0.3",
"cors": "2.8.5",
"express": "4.18.2",
"helmet": "6.0.0",
"morgan": "1.10.0"
},
"devDependencies": {
"@tsconfig/node16": "1.0.3",
"@types/app-root-path": "1.2.4",
"@types/cors": "2.8.12",
"@types/express": "4.17.14",
"@types/morgan": "1.9.3",
"@types/node": "18.11.5",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"eslint": "8.26.0",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"engines": {
"node": "18.12.0",
"npm": "8.19.2"
},
"homepage": "https://github.com/narekhovhannisyan/express-ts-app-boilerplate#readme",
"keywords": [
"application",
"backend",
"express"
],
"main": "src/bin/www.ts",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/narekhovhannisyan/express-ts-app-boilerplate"
},
"scripts": {
"build": "tsc",
"fix-package": "fixpack",
"lint": "./node_modules/.bin/eslint ./src --fix",
"start": "node dist/bin/www",
"start-dev": "npx ts-node src/bin/www"
}
}