-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "nodemon --exec babel-node index.js",
"test": "jest --runInBand --forceExit --detectOpenHandles"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"dotenv-cli": "^1.4.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.0.0",
"jest-cli": "^24.0.0",
"jest-environment-node": "^24.0.0",
"graphql-tools": "^4.0.4",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"mongodb-memory-server": "3.0.0"
},
"dependencies": {
"apollo-server-express": "^2.4.6",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"graphql": "^14.1.1",
"helmet": "^3.15.1",
"lodash": "^4.17.11",
"mongodb": "^3.1.13",
"mongoose": "^5.4.19"
}
}