-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.29 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.29 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "brainstrike-server",
"version": "1.0.0",
"description": "brainkstrike typescript node API",
"type": "commonjs",
"main": "build/src/index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start:dev": "nodemon",
"start": "pnpm run build && node build/src/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint './src/**/*.{ts,tsx}' --fix",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"create-fake-content": "pnpm run build && node build/src/utility/faker/createFakeContent.js",
"coverage": "vitest run --coverage",
"generate": "graphql-codegen --config codegen.ts",
"generate:dev": "graphql-codegen --config codegen.ts --watch",
"generate:auto": "node generate-code.mjs",
"dev": "concurrently \"pnpm run start:dev\" \"pnpm run generate:dev\"",
"migrate:up": "pnpm run build && NODE_ENV=migration node build/src/migrate.js up",
"migrate:down": "pnpm run build && NODE_ENV=migration node build/src/migrate.js down",
"clean": "rm -rf node_modules build dist",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seandearnaley/brainstrike-server.git"
},
"keywords": [
"api",
"node",
"apollo",
"typescript"
],
"author": "Sean Dearnaley <seandearnaley@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seandearnaley/brainstrike-server/issues"
},
"homepage": "https://github.com/seandearnaley/brainstrike-server#readme",
"devDependencies": {
"@eslint/js": "9.28.0",
"@faker-js/faker": "^9.8.0",
"@graphql-codegen/cli": "5.0.7",
"@graphql-codegen/typescript": "4.1.6",
"@graphql-codegen/typescript-resolvers": "4.5.1",
"@parcel/watcher": "^2.5.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/graphql-iso-date": "3.4.3",
"@types/lodash": "4.17.17",
"@types/node": "22.15.30",
"@types/node-fetch": "2.6.12",
"@typescript-eslint/eslint-plugin": "8.33.1",
"@typescript-eslint/parser": "8.33.1",
"@vitest/coverage-v8": "^3.2.2",
"@vitest/ui": "^3.2.2",
"apollo-link": "1.2.14",
"apollo-link-http": "1.5.17",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.5",
"eslint-import-resolver-typescript": "4.4.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.4.1",
"nock": "14.0.5",
"nodemon": "3.1.10",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"typescript-eslint": "8.33.1",
"unplugin-swc": "^1.5.4",
"vitest": "^3.2.2"
},
"dependencies": {
"@apollo/server": "4.12.2",
"@apollo/utils.keyvaluecache": "^4.0.0",
"@as-integrations/express5": "^1.1.0",
"@graphql-tools/schema": "10.0.23",
"apollo-datasource": "^3.3.2",
"concurrently": "9.1.2",
"cors": "^2.8.5",
"dataloader": "2.2.3",
"dotenv": "16.5.0",
"express": "5.2.0",
"graphql": "16.11.0",
"graphql-import": "1.0.2",
"graphql-iso-date": "3.6.1",
"graphql-tag": "2.12.6",
"lodash": "4.17.21",
"node-fetch": "3.3.2",
"npm-check-updates": "18.0.1",
"opaqueid": "1.2.0",
"patch-package": "8.0.0",
"pg": "8.16.0",
"postinstall-postinstall": "2.1.0",
"reflect-metadata": "0.2.2",
"typeorm": "0.3.24"
}
}