This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
50
51
52
53
{
"name": "internet-movie-database-api",
"version": "1.0.0",
"description": "Api for movie database",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test yarn run lint && yarn run mocha",
"lint": "eslint --quiet '**/*.js'",
"start": "node app",
"start:dev": "NODE_ENV=development yarn start",
"mocha": "NODE_ENV=test PORT=8877 mocha -t 10000 --exit --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tetrash/internet-movie-database-api.git"
},
"author": "Karol Szymanowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/tetrash/internet-movie-database-api/issues"
},
"homepage": "https://github.com/tetrash/internet-movie-database-api#readme",
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"pre-push": "yarn test"
}
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.2.12",
"sequelize-cli": "^5.4.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"express-winston": "^3.1.0",
"husky": "^1.3.1",
"mocha": "^6.1.2",
"node-mocks-http": "^1.7.3",
"supertest": "^4.0.2"
}
}