forked from filoscoder/tenstack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.95 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "tenstack-starter",
"version": "2.0.0",
"description": "Typescript Node Express Rest API server starter",
"private": true,
"authors": "filoscoder",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint 'src/**/*.{ts,js}' '__tests__/**/*.{ts,js}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,js}' '__tests__/**/*.{ts,js}' --quiet",
"transpile": "tsc",
"clean": "rimraf dist",
"build": "NODE_ENV=production run-s prettify clean transpile",
"watch": "tsc --watch",
"test": "NODE_ENV=test jest --coverage --runInBand --detectOpenHandles",
"test:watchAll": "NODE_ENV=test jest --watchAll --runInBand --detectOpenHandles",
"start": "NODE_ENV=development run-s prettify lint & nodemon",
"service:start": "pm2 start ecosystem.config.js",
"service:reload": "pm2 reload ecosystem.config.js",
"service:startup": "pm2 startup",
"service:stop": "pm2 stop ecosystem.config.js",
"service:list": "pm2 list ecosystem.config.js",
"service:delete": "pm2 delete ecosystem.config.js",
"service:logs": "pm2 logs",
"prettify": "prettier --write \"src/**/*.{ts,js,json}\" \"__tests__/**/*.{ts,js,json}\""
},
"keywords": [
"typescript",
"node",
"express",
"rest",
"api",
"server"
],
"dependencies": {
"bcrypt": "^5.0.0",
"connect-timeout": "^1.9.0",
"cors": "^2.8.3",
"dotenv": "^16.0.1",
"express": "^4.15.3",
"express-pino-logger": "^7.0.0",
"express-validator": "^6.14.2",
"helmet": "^6.0.0",
"http-status": "^1.5.2",
"jsonwebtoken": "^9.0.0",
"lodash-es": "^4.17.21",
"morgan": "^1.8.2",
"pino-pretty": "^9.1.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/bcrypt": "^5.0.0",
"@types/connect-timeout": "^0.0.36",
"@types/cors": "^2.8.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/express-pino-logger": "^4.0.3",
"@types/helmet": "^4.0.0",
"@types/http-status": "^1.1.2",
"@types/jest": "^29.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash-es": "^4.17.4",
"@types/module-alias": "^2.0.1",
"@types/morgan": "^1.7.32",
"@types/node": "^18.6.4",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.1",
"jest-watch-typeahead": "^2.0.0",
"module-alias": "^2.2.2",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"pm2": "^5.1.0",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.2",
"ts-node": "^10.2.0",
"tsc": "^2.0.3",
"tsconfig-paths": "^4.1.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 16.0.0"
}
}