-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 956 Bytes
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
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:integration": "./node_modules/.bin/mocha ./tests/integration/*",
"lint": "./node_modules/.bin/eslint . --max-warnings=0",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielabud/app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabrielabud/app/issues"
},
"homepage": "https://github.com/gabrielabud/app#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"knex": "^0.16.3",
"pg": "^7.8.0",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"chai-properties": "^1.3.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
}
}