-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.56 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
{
"name": "toches",
"version": "1.0.0",
"main": "./cli/build/index.js",
"license": "GPL-3.0-only",
"repository": "[email protected]:Frikanalen/toches.git",
"bin": {
"toches": "./cli/build/index.js"
},
"scripts": {
"test": "jest --runInBand --detectOpenHandles --forceExit --coverageDirectory=\"./coverage\"",
"build": "tsc",
"start": "node --enable-source-maps build/index.js",
"dev": "ts-node-dev src/index.ts",
"build-cli": "tsc --project ./cli/tsconfig.json",
"cli": "node ./cli/build/index.js",
"makeMockData": "yarn build-cli && yarn knex migrate:latest && yarn cli ctu admin && yarn cli cmd users 10 && yarn cli cmd orgs 10",
"codegen": "graphql-codegen --config codegen.yml",
"codegen-introspect-db": "ts-node src/fetchTypesFromDB.ts"
},
"dependencies": {
"@koa/router": "^12.0.0",
"apollo-server-koa": "^3.12.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.1.3",
"graphql": "^16.5.0",
"graphql-scalars": "^1.22.1",
"knex": "^2.4.2",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"koa-session": "^6.4.0",
"koa2-swagger-ui": "^5.8.0",
"libxmljs2": "^0.32.0",
"objection": "^3.1.1",
"p-limit": "^4.0.0",
"pg": "^8.11.0",
"swagger-jsdoc": "^6.2.8",
"tslog": "^4.8.2",
"yup": "^1.2.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "4.0.0",
"@graphql-codegen/introspection": "4.0.0",
"@graphql-codegen/typescript": "4.0.0",
"@graphql-codegen/typescript-resolvers": "4.0.0",
"@shopify/jest-koa-mocks": "^5.1.1",
"@tsconfig/node18": "^2.0.1",
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.2",
"@types/koa": "^2.13.6",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-logger": "^3.1.2",
"@types/koa-session": "^6.4.1",
"@types/koa__router": "^12.0.0",
"@types/node": "^20.2.5",
"@types/pg": "^8.10.1",
"@types/swagger-jsdoc": "^6.0.1",
"commander": "^10.0.1",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"knex-types": "^0.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"utility-types": "^3.10.0"
}
}