-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.51 KB
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
{
"name": "graphql-relay-server",
"version": "1.0.0",
"description": "An Express server exposing a demonstrative Relay GraphQL API",
"main": "index.ts",
"scripts": {
"start": "nodemon src/index.ts",
"test": "jest",
"db:start": "./scripts/start-db.sh",
"db:stop": "./scripts/stop-db.sh",
"db:remove": "./scripts/remove-db.sh",
"db:create-tables": "ts-node src/sql/createTables",
"db:populate-tables": "ts-node src/sql/populateTables.ts",
"db:setup": "pnpm run db:start && sleep 2 && pnpm run db:create-tables && pnpm run db:populate-tables",
"db:teardown": "pnpm run db:stop && pnpm run db:remove",
"db:reset": "pnpm run db:teardown && pnpm run db:setup"
},
"author": "Tom Trinca",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^6.0.0-alpha.6",
"@types/chance": "^1.1.3",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/pg": "^8.6.4",
"@types/uuid": "^8.3.4",
"body-parser": "^1.19.2",
"chalk": "^4.1.2",
"chance": "^1.1.8",
"cookie-parser": "^1.4.6",
"dataloader": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.17.2",
"express-graphql": "^0.12.0",
"graphql": "^15.0.0",
"graphql-relay": "^0.9.0",
"jest": "^29.4.3",
"nodemon": "^2.0.15",
"pg": "^8.7.3",
"sequelize": "^6.16.2",
"short-uuid": "^4.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"uuid": "^8.3.2"
}
}