-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.62 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
{
"name": "game-organizer",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "yarn production:migration:run && node dist/shared/infra/http/server.js",
"build": "tsc",
"production:migration:run": "yarn typeorm migration:run -d dist/shared/infra/typeorm/index.js",
"dev": "ts-node-dev --transpile-only --inspect --ignore-watch node_modules src/shared/infra/http/server.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"migration:run": "yarn typeorm migration:run -d src/shared/infra/typeorm/index.ts"
},
"dependencies": {
"@notionhq/client": "^2.2.3",
"apicalypse": "^0.2.0",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"howlongtobeat": "^1.7.0",
"jsonwebtoken": "^9.0.0",
"node": "^19.4.0",
"pg": "^8.10.0",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^2.0.0",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.15"
},
"devDependencies": {
"@types/apicalypse": "^0.1.1",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"notion-api-types": "^1.0.0",
"typescript": "^4.9.4"
}
}