-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.54 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
{
"name": "meeting-room-reservations-api",
"version": "1.0.0",
"author": "Felipe Belinassi",
"license": "ISC",
"description": "Coworking office room reservations API",
"main": "build/src/index.js",
"scripts": {
"clean": "del-cli --force ./build",
"build": "npm run clean && tsc",
"prestart": "npm run build",
"start": "node -r dotenv/config build/src/index.js",
"start:dev": "ts-node-dev --transpile-only -r dotenv/config src/index.ts | pino-pretty -c",
"db:migrate": "npx sequelize-cli db:migrate",
"db:seed": "npx sequelize-cli db:seed:all",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest",
"test:integration": "cross-env DB_NAME=test jest --projects ./tests/integration --runInBand",
"lint": "eslint ./src --ext .ts",
"lint:fix": "yarn lint -- --fix",
"style:check": "prettier --check src/**/*.ts",
"style:fix": "prettier --write src/**/*.ts",
"depcheck": "depcheck --ignores dotenv,ts-node,pg,sequelize-cli"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"bcrypt": "^5.0.0",
"del-cli": "^3.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.4.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"pg": "^8.5.1",
"pino": "^6.8.0",
"sequelize": "^6.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/pino": "^6.3.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"cross-env": "^7.0.3",
"depcheck": "^1.3.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"pino-pretty": "^4.3.0",
"prettier": "^2.2.1",
"sequelize-cli": "^6.2.0",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run style:check",
"pre-push": "npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/felipebelinassi/meeting-room-reservations-api.git"
},
"keywords": [
"nodejs",
"graphql",
"typescript"
],
"bugs": {
"url": "https://github.com/felipebelinassi/meeting-room-reservations-api/issues"
}
}