-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.89 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.89 KB
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
{
"name": "pmp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r tsconfig-paths/register dist/index.js",
"dev": "nodemon -r tsconfig-paths/register src/index.ts",
"build": "rm -rf dist && tsc -p tsconfig-build.json && cp -R ./src/templates dist/",
"lint": "eslint --ext .ts ./src --fix && eslint --ext .ts ./tests --fix",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo",
"migrate:undo:all": "sequelize db:migrate:undo:all",
"test": "NODE_ENV=test mocha -r ts-node/register -r tsconfig-paths/register tests/**/*.test.ts --bail --exit --timeout 10000",
"test:watch": "NODE_ENV=test mocha -r ts-node/register -r tsconfig-paths/register --timeout 10000 --watch tests/**/*.test.ts",
"coverage": "nyc -r text -e .ts -x \"tests/*.test.ts\" npm run test",
"seed": "sequelize db:seed:all",
"seed:undo": "sequelize db:seed:undo",
"prepare": "husky install",
"precommit": "lint-staged",
"format": "prettier --write '**/*.{ts,js}'"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"prettier": "^2.6.1",
"ts-node": "^10.4.0",
"eslint-config-airbnb-typescript": "^16.1.0"
},
"dependencies": {
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.2",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/mime-types": "^2.1.1",
"@types/node": "^16.11.11",
"@types/nodemailer": "^6.4.4",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eta": "^1.12.3",
"express": "^4.17.1",
"express-openapi-validator": "^4.13.4",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.34",
"nanoid": "^3.2.0",
"nodemailer": "^6.7.2",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.12.0-alpha.1",
"sequelize-cli": "^6.3.0",
"swagger-routes-express": "^3.3.1",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"winston-transport-sentry-node": "^2.0.0",
"yamljs": "^0.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}