-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "flybase-graphql",
"version": "2024.1.1",
"description": "FlyBase GraphQL implementation",
"main": "server/index.js",
"contributors": [
"Josh Goodman <[email protected]>",
"Seth Campbell <[email protected]>"
],
"license": "MIT",
"scripts": {
"prebuild": "yarn run format",
"build:watch": "node build.js --watch",
"build": "node build.js",
"start": "rm -f logs/* && pm2 start --env production ecosystem.config.js",
"dev": "pm2 start ecosystem.config.js",
"format": "prettier --write 'server/**/*.{js,gql}'",
"pm2": "pm2",
"stop": "pm2 stop all && pm2 delete all",
"clear-cache": "apachectl restart && ../bin/purge_cache.pl",
"clean-pull": "git checkout -- . && git pull"
},
"dependencies": {
"@graphile-contrib/pg-many-to-many": "^1.0.2",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@sentry/node": "6.6.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-datasource-rest": "^0.14.0",
"apollo-link-http": "^1.5.17",
"apollo-server": "^2.25.1",
"cross-fetch": "^3.1.4",
"graphile-build-pg": "^4.13.0",
"graphile-utils": "^4.13.0",
"graphql": "^15.5.0",
"graphql-parse-resolve-info": "^4.13.0",
"import-graphql-string": "^1.0.1",
"lodash.isplainobject": "^4.0.6",
"lodash.mapkeys": "^4.6.0",
"lodash.pickby": "^4.6.0",
"pg": "7.11.0",
"pm2": "^5.1.0",
"postgraphile": "^4.13.0",
"postgraphile-apollo-server": "0.1.1",
"postgraphile-plugin-connection-filter": "^2.3.0"
},
"devDependencies": {
"@luckycatfactory/esbuild-graphql-loader": "^3.6.0",
"esbuild": "0.12.8",
"graphql-tag": "^2.12.4",
"prettier": "^2.3.1",
"yargs": "^17.0.1"
},
"resolutions": {
"graphql": "15.5.x"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
}
}