-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "@legumeinfo/graphql-server",
"version": "1.7.1",
"description": "A GraphQL server that supports the Legume Information System and related biodata websites",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc && cp ./src/types/*.graphql ./dist/types",
"build:watch": "tsc-watch",
"clean": "rm -rf ./dist",
"serve": "bun run ./dist/index.js",
"serve:dev": "NODE_ENV=development bun run tsc-watch --onSuccess \"bun run serve\"",
"serve:prod": "NODE_ENV=production bun run serve",
"start": "bun run clean && bun run build && bun run serve"
},
"keywords": [
"typescript",
"graphql",
"apollo",
"legumes",
"agbio",
"biology"
],
"author": "Legume Information System",
"license": "Apache-2.0",
"dependencies": {
"@apollo/datasource-rest": "^6.3.0",
"@apollo/server": "^4.11.0",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.8",
"dotenv": "^16.4.5",
"graphql": "^16.9.0"
},
"devDependencies": {
"tsc-watch": "^6.2.0",
"typescript": "^5.6.3"
}
}