-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.21 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
{
"name": "calvin",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:abraaoduarte/calvin.git",
"author": "Abraão Duarte <abraao.n.duarte@gmail.com>",
"license": "MIT",
"scripts": {
"start:dev": "nodemon",
"build": "tsc --project './tsconfig.json'",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"typecheck": "tsc --project tsconfig.json --noEmit",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:create": "yarn run typeorm migration:create -n",
"migration:run": "yarn typeorm -- migration:run",
"migration:revert": "yarn typeorm -- migration:revert",
"seed:run": "ts-node -r tsconfig-paths/register ./node_modules/typeorm-seeding/dist/cli.js seed",
"test": "npx jest --passWithNoTests --colors",
"test:coverage": "npx jest --coverage"
},
"dependencies": {
"@types/node": "^15.0.2",
"add": "^2.0.6",
"bcrypt": "^5.0.1",
"compose-middleware": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"qs": "^6.10.1",
"ramda": "^0.27.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32",
"typeorm-pagination": "^2.0.3",
"typeorm-seeding": "^1.6.1",
"typescript": "^4.2.4",
"winston": "^3.3.3",
"yarn": "^1.22.10",
"yup": "^0.32.9",
"yup-locale-pt": "^0.0.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-jwt": "^6.0.2",
"@types/faker": "^5.5.7",
"@types/jest": "^27.0.3",
"@types/morgan": "^1.9.2",
"@types/ramda": "^0.27.40",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.4.5",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0"
}
}