-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 978 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
36
37
38
39
40
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon .",
"lint": "eslint .",
"prod": "node_modules/.bin/sequelize db:migrate; node .",
"test": "ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VasylKhoroshcho/API.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/VasylKhoroshcho/API/issues"
},
"homepage": "https://github.com/VasylKhoroshcho/API#readme",
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"nodemon": "^1.18.3",
"sinon": "^6.1.4",
"sinon-express-mock": "^2.0.5"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"multer": "^1.3.1",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.38.0",
"sequelize-cli": "^4.0.0"
}
}