-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 975 Bytes
/
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
{
"name": "simplicity-graphql-server",
"version": "4.0.1",
"description": "GraphQL server for SimpliCity II",
"type": "module",
"scripts": {
"start": "nodemon --exec node --env-file=.env src/local.js",
"clean": "rm -rf deploy/build && rm -rf node_modules/",
"deploy": "cd deploy && node deploy.js",
"destroy": "cd deploy && node destroy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityofasheville/simplicity-graphql-server.git"
},
"keywords": [
"SimpliCity",
"GraphQL"
],
"author": "Cameron Carlyle <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/cityofasheville/simplicity-graphql-server",
"dependencies": {
"@apollo/server": "^4.7.5",
"@as-integrations/aws-lambda": "^3.1.0",
"@aws-sdk/client-secrets-manager": "^3.485.0",
"axios": "^1.6.3",
"pg": "^8.6.0"
},
"devDependencies": {
"nodemon": "^3.1.0",
"yaml": "^2.4.2"
}
}