-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "fitbaw-node-backend",
"version": "1.0.0",
"description": "Node.js backend for Fitbaw! react native app",
"main": "app.js",
"engines": {
"node": "8.11.2",
"yarn": "1.7.0"
},
"scripts": {
"test": "jest",
"lint": "eslint api/**",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cameron485/fitbaw-node-backend.git"
},
"keywords": [
"nodejs",
"mongodb",
"arangodb"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cameron485/fitbaw-node-backend/issues"
},
"homepage": "https://github.com/Cameron485/fitbaw-node-backend#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"jest": "^23.1.0",
"supertest": "^3.1.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"js-yaml": "^3.12.0",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.3"
}
}