-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "tfa-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon server.js",
"start": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "^5.0.0-beta.1",
"apollo-server": "^2.12.0",
"apollo-server-express": "^2.12.0",
"axios": "^0.19.2",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"casual": "^1.6.2",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"express-session": "^1.17.0",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.7",
"jwks-rsa": "^1.8.0",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"path": "^0.12.7",
"postgraphile": "^4.6.0",
"serve-static": "^1.14.1"
},
"devDependencies": {
"apollo-fetch": "^0.7.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.3"
},
"babel": {
"presets": [
"env"
]
}
}