-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 934 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
35
{
"name": "bff-pokeagenda",
"version": "1.0.0",
"description": "Back for front para a pokeagenda",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src -e js,graphql",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test": "jest"
},
"author": "Tiago Santos Da Silva",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.15",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.7.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"apollo-server": "^2.25.4",
"dotenv": "^8.2.0",
"graphql": "^14.7.0",
"graphql-import-files": "^1.0.6",
"graphql-merge-resolvers": "^1.1.16",
"poke-types": "^1.0.22",
"superagent": "^5.3.1"
}
}