-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "laughing-potato",
"version": "1.0.0",
"description": "Practice creating APIs using GraphQL",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"lint": "eslint ./database --fix",
"test": "cross-env DB_ENV=testing jest --runInBand --forceExit --detectOpenHandles"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/NabeelahY/laughing-potato.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NabeelahY/laughing-potato/issues"
},
"homepage": "https://github.com/NabeelahY/laughing-potato#readme",
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"graphql-codegen-core": "^0.18.2",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"apollo-server": "^2.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.7",
"knex": "^0.20.13",
"pg": "^7.18.2"
}
}