forked from witsawa-corporation/node-ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
{
"name": "node-ts-boilerplate",
"version": "1.0.0",
"main": "app/server.js",
"repository": "https://github.com/witsawa-corporation/node-ts-boilerplate.git",
"author": "ak1103dev",
"license": "MIT",
"scripts": {
"tsc": "tsc",
"start": "ts-node-dev --respawn -r tsconfig-paths/register ./app/server.ts",
"start:prod": "cross-env NODE_ENV=production node ./build/server.js",
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --fix --ext .js,.ts",
"test": "jest",
"test:watch": "jest --watch",
"docker": "docker-compose up"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mongoose": "^5.9.25",
"mongoose-delete": "^0.5.2",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.1.3",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.32",
"@types/node": "^14.6.3",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"pm2": "^4.2.3",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node-dev": "^1.0.0-pre.52",
"tsc": "^1.20150623.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7"
}
}