-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.94 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
{
"name": "wundergraph-application",
"version": "1.0.0",
"description": "",
"scripts": {
"build:nest": "nest --path ./tsconfig.build.json build",
"start:dev": "nest --path ./tsconfig.build.json start --watch",
"typeorm": "typeorm-ts-node-esm -d ormconfig.ts",
"migration:generate": "npm run build:nest && npm run typeorm migration:generate -- -n",
"migration:run": "npm run build:nest && npm run typeorm migration:run",
"setup": "npm run start:services && wait-on -d 5000 tcp:5432 && npm run build:nest && npm run typeorm migration:run",
"start": "npm run setup && run-p start:dev dev wundergraph seed",
"start:services": "docker compose --env-file docker.env up -d",
"wundergraph": "wait-on -d 500 http://localhost:3005 && cd .wundergraph && wunderctl up -e ./../.env --debug",
"open": "wait-on -d 500 http://localhost:9991 && open-cli http://localhost:3000",
"seed": "wait-on -d 2000 http://localhost:9991 && npm run open",
"build-next": "next build",
"dev": "wait-on -d 2000 http://localhost:9991 && next dev",
"migrate": "prisma format && prisma migrate dev --name",
"cleanup": "docker-compose down -v",
"wunderctl": "wunderctl",
"check": "tsc --noEmit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@nestjs/apollo": "^10.0.22",
"@nestjs/common": "^9.0.11",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.11",
"@nestjs/graphql": "^10.0.22",
"@nestjs/mapped-types": "^1.1.0",
"@nestjs/platform-express": "^9.0.11",
"@nestjs/typeorm": "^9.0.1",
"@wundergraph/nextjs": "^0.1.6",
"@wundergraph/sdk": "^0.100.0",
"apollo-server-express": "^3.10.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"graphql": "^16.6.0",
"graphql-parse-resolve-info": "^4.12.3",
"graphql-tools": "^8.3.4",
"graphql-type-json": "^0.3.2",
"nestjs-typeorm-paginate": "^4.0.2",
"next": "^12.2.5",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"ts-morph": "^15.1.0",
"typeorm": "^0.3.9"
},
"devDependencies": {
"@nestjs/cli": "^9.1.1",
"@nestjs/schematics": "^9.0.1",
"@nestjs/testing": "^9.0.11",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"run-p": "^0.0.0",
"source-map-support": "^0.5.21",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.2",
"wait-on": "^6.0.1"
}
}