-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.77 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
50
51
52
53
54
55
56
57
58
{
"name": "@bookshelf/server",
"version": "1.0.0",
"private": true,
"dependencies": {
"@bookshelf/secure-id": "*",
"@bookshelf/string-utils": "*",
"@graphql-tools/graphql-file-loader": "6.2.5",
"@graphql-tools/load": "6.2.5",
"@graphql-tools/load-files": "6.2.4",
"@graphql-tools/merge": "6.2.5",
"@graphql-tools/schema": "7.0.0",
"@graphql-tools/utils": "7.0.2",
"apollo-server-express": "2.19.0",
"bcrypt": "5.0.0",
"cookie": "0.4.1",
"dataloader": "2.0.0",
"express": "4.17.3",
"faker": "5.1.0",
"graphql": "15.4.0",
"graphql-voyager": "1.0.0-rc.31",
"jsonwebtoken": "8.5.1",
"pg": "8.5.0",
"reflect-metadata": "0.1.13",
"subscriptions-transport-ws": "0.9.18",
"typedi": "0.8.0",
"typeorm": "0.2.29",
"typeorm-typedi-extensions": "0.2.3",
"ws": "7.4.0"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/cookie": "0.4.0",
"@types/express": "4.17.9",
"@types/faker": "5.1.4",
"@types/jsonwebtoken": "8.5.0",
"@types/lodash.merge": "4.6.6",
"@types/supertest": "2.0.10",
"@types/ws": "7.4.0",
"apollo-server-testing": "2.19.0",
"node-mocks-http": "1.9.0",
"rimraf": "3.0.2",
"sqlite3": "5.0.0",
"supertest": "6.0.1"
},
"scripts": {
"clean": "yarn rimraf coverage dist *.tsbuildinfo",
"copy-graphql": "./copy-graphql.sh",
"build": "yarn tsc --build && yarn copy-graphql",
"start": "yarn node ./dist/index.js",
"dev": "yarn ts-node-dev --no-notify --respawn --transpile-only ./src/index.ts",
"typecheck": "yarn tsc --noEmit",
"lint": "yarn eslint . --ext .ts",
"test": "yarn jest",
"typeorm": "yarn ts-node ./node_modules/typeorm/cli.js",
"db:seed": "yarn ts-node ./src/interfaces/cli/seed.ts"
}
}