-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
65
66
67
68
69
70
{
"name": "node-typescript-api-starter",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "npm run build && node build/server.js",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samsoft00/node-typescript-api-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/samsoft00/node-typescript-api-starter/issues"
},
"homepage": "https://github.com/samsoft00/node-typescript-api-starter#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/config": "0.0.36",
"@types/cors": "^2.8.6",
"@types/eslint": "^6.1.8",
"@types/express": "^4.17.3",
"@types/fancy-log": "^1.3.1",
"@types/helmet": "0.0.45",
"@types/lodash": "^4.14.149",
"@types/lusca": "^1.6.1",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"npm-check-updates": "^4.0.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fancy-log": "^1.3.3",
"helmet": "^3.21.3",
"lodash": "^4.17.15",
"lusca": "^1.6.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"redis": "^3.0.2",
"uuid": "^7.0.2"
}
}