-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "server",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"main": "dist/index.js",
"devDependencies": {
"concurrently": "^6.2.1",
"nodemon": "^2.0.12"
},
"engines": {
"node": "^16.13.0"
},
"dependencies": {
"@apollo/server": "^4.3.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "16.7.10",
"@types/ws": "^8.5.3",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.2",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.10",
"ts-node": "^10.9.1",
"type-graphql": "2.0.0-beta.1",
"typeorm": "^0.3.11",
"typescript": "^4.9.4",
"ws": "^8.11.0"
},
"scripts": {
"start": "node dist/index.js",
"dev": "concurrently -n TSC,SERVER -c blue.bold,yellow.bold \"npx tsc -w\" \"nodemon --ignore client dist/index.js\" ",
"typeorm": "typeorm-ts-node-commonjs",
"migration:gen": "yarn typeorm migration:generate -n",
"migration:run": "yarn typeorm migration:run -d src/data-source.ts",
"heroku-postbuild": "yarn tsc && yarn --cwd client && yarn --cwd client build",
"install:all": "yarn && yarn --cwd client"
},
"license": "MIT"
}