-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "english-talking-api",
"version": "1.0.1",
"description": "This API aims to provide users with the possibility of conducting dialogues in English where the conversations and answers are registered and evaluated by the users themselves.",
"main": "dist/server.js",
"scripts": {
"test": "cross-env NODE_ENV=tests jest --runInBand",
"lint": "eslint .",
"dev": "cross-env ts-node-dev --respawn src/server.ts --transpile-only --ignore-watch node_modules --respawn",
"build": "tsc",
"start": "cross-env NODE_ENV=production node dist/src/server.js",
"watch-node": "nodemon dist/src/server.js",
"watch-ts": "tsc -w",
"release": "standard-version",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barbosamaatheus/english-talking-api.git"
},
"author": "https://github.com/barbosamaatheus",
"license": "MIT",
"bugs": {
"url": "https://github.com/barbosamaatheus/english-talking-api/issues"
},
"homepage": "https://github.com/barbosamaatheus/english-talking-api#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/faker": "^4.1.12",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^8.0.29",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.6.1",
"lint-staged": "^10.2.0",
"nodemon": "^2.0.6",
"prettier": "^2.0.5",
"standard-version": "^9.0.0",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-node": "3.3.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^4.1.2"
},
"dependencies": {
"bcrypt": "^5.0.0",
"class-validator": "^0.12.2",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.29"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"yarn test --bail --listTests --findRelatedTests"
]
}
}