-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.58 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
{
"name": "bloggando-server",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.0",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/joi": "^14.3.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.6.9",
"@types/nodemailer": "^6.2.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"create-index": "^2.4.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard-with-typescript": "^7.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"husky": "^3.0.2",
"jest": "^24.9.0",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"ts-transformer-imports": "^0.4.3",
"tsconfig-paths": "^3.8.0",
"ttypescript": "^1.5.7",
"typeorm-factory": "^0.0.13",
"typescript": "^3.5.3"
},
"dependencies": {
"@sentry/node": "^5.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.1",
"date-fns": "^2.0.1",
"dotenv": "^8.0.0",
"express": "^4.15.4",
"express-async-handler": "^1.1.4",
"express-list-endpoints": "^4.0.1",
"express-validation": "^1.0.2",
"helmet": "^3.20.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.14.1",
"nodemailer": "^6.3.0",
"nodemailer-pug-engine": "^1.0.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.18",
"youch": "^2.0.10"
},
"scripts": {
"start": "nodemon",
"jest": "jest",
"testpre": "docker-compose -f './__tests__/docker-compose.yml' up -d --build",
"test": "npm-run-all -c -n testpre jest testpos",
"testpos": "docker-compose -f './__tests__/docker-compose.yml' down",
"lint": "eslint src -c .eslintrc.js --ext ts --fix",
"prettier": "prettier --config ./.prettierrc --write src/**/*.ts",
"clean": "rimraf ./build",
"typeorm": "ts-node ./node_modules/.bin/typeorm",
"build": "ttsc",
"prod": "echo Not implemented"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}