-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.19 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
{
"name": "scannarr",
"version": "0.5.2",
"description": "",
"main": "build/index.js",
"author": "Banou26",
"scripts": {
"codegen": "concurrently \"npm run _codegen\"",
"_codegen": "node _codegen.mjs && graphql-codegen --config codegen.ts & node _codegen.js",
"codegen-watch": "concurrently \"npm run _codegen-watch\"",
"_codegen-watch": "node _codegen.mjs && graphql-codegen -w --config codegen.ts & node _codegen.js",
"copy-seal": "npx --yes copyfiles -u 3 ./node_modules/seal-wasm/build/*.wasm build",
"dev": "nodemon -e ts,tsx --watch src --exec \"npm run _codegen && npm run build && npm run types \"",
"types": "tsc",
"types-watch": "tsc --watch",
"lint": "eslint --fix",
"_dev": "vite build --watch",
"build": "vite build && tsc",
"test": "node _codegen.js && tsx bin/test.ts",
"test-watch": "tsx watch bin/test.ts"
},
"devDependencies": {
"@apollo/client": "^3.7.10",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/client-preset": "^2.1.1",
"@graphql-codegen/introspection": "^3.0.1",
"@graphql-codegen/typescript": "^3.0.2",
"@graphql-codegen/typescript-document-nodes": "^3.0.2",
"@graphql-codegen/typescript-resolvers": "^3.1.1",
"@graphql-codegen/urql-introspection": "^2.2.1",
"@japa/expect": "^2.0.2",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"@rollup/plugin-inject": "^5.0.3",
"concurrently": "^7.6.0",
"node-stdlib-browser": "^1.2.0",
"nodemon": "^2.0.22",
"rollup-plugin-polyfill-node": "^0.12.0",
"tsx": "^3.12.5",
"typescript": "^5.0.3",
"vite": "^4.2.1"
},
"dependencies": {
"@apollo/server": "^4.5.0",
"@eddeee888/gcg-typescript-resolver-files": "^0.5.0",
"@graphql-yoga/plugin-defer-stream": "^2.0.3",
"@urql/devtools": "^2.0.3",
"@urql/exchange-graphcache": "^6.3.1",
"anitomyscript": "^2.0.4",
"deepmerge": "^4.3.1",
"dependency-graph": "^0.11.0",
"fp-ts": "^2.12.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"graphql-yoga": "^4.0.3",
"mongo-dot-notation": "^3.1.0",
"react": "^18.2.0",
"rxjs": "^7.8.1",
"seal-wasm": "^0.0.1",
"urql": "^4.0.5"
},
"type": "module"
}