-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.89 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": "destiny",
"version": "0.1.0",
"license": "MIT",
"author": {
"name": "Pedro Reis Velloso dos Santos",
"email": "pedro_reis14@hotmail.com"
},
"repository": {
"url": "https://github.com/pedrorvelloso/destiny"
},
"scripts": {
"test": "jest",
"start": "NODE_ENV=development yarn start:dev",
"start:prod": "node -r ./tsconfig-paths-bootstrap.js build/bootstrap.js",
"start:dev": "ts-node-dev -r tsconfig-paths/register --poll --transpile-only --ignore-watch node_modules src/bootstrap.ts",
"start:dev:debug": "ts-node-dev -r tsconfig-paths/register --transpile-only --inspect --ignore-watch node_modules src/bootstrap.ts",
"build": "tsc --project tsconfig.prod.json",
"typeorm": "ts-node-dev -r tsconfig-paths/register --poll ./node_modules/typeorm/cli.js",
"migration:create": "yarn typeorm migration:create -n",
"migration:run": "yarn typeorm migration:run",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(ts)\"",
"format": "yarn prettier --write",
"check:lint": "eslint --ignore-path .gitignore --ext .ts .",
"check:format": "yarn prettier --list-different",
"check:types": "tsc --noEmit",
"lint:staged": "lint-staged",
"validate": "npm-run-all --parallel check:*"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"celebrate": "^14.0.0",
"class-transformer": "^0.4.0",
"cors": "^2.8.5",
"date-fns": "^2.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inversify": "^5.0.5",
"inversify-express-utils": "^6.3.2",
"ioredis": "^4.24.5",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.4.0",
"socket.io-client": "^2.4.0",
"typeorm": "^0.2.31",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.8",
"@types/express-serve-static-core": "^4.17.19",
"@types/hapi__joi": "^17.1.6",
"@types/ioredis": "^4.22.1",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.14.37",
"@types/serve-static": "^1.13.9",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.36",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"json-schema": "^0.3.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"sqlite3": "^5.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
}
}