-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.26 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "swapi",
"version": "1.0.0",
"description": "The Star Wars API",
"main": "index.js",
"scripts": {
"heroku-postbuild": "npm run db:ready",
"start": "cross-env NODE_ENV=production babel-node src",
"dev": "cross-env DEBUG=dev nodemon --exec babel-node src",
"docker:build": "docker-compose up -d",
"docker:run": "docker run swapi",
"mocha:test": "nyc mocha --require @babel/register tests/*.js --timeout 20000 --exit",
"test": "cross-env NODE_ENV=test npm-run-all db:ready mocha:test",
"lint": "eslint src",
"fix": "eslint --fix .",
"db:ready": "npm-run-all db:undo db:migrate db:seed",
"db:migrate": "sequelize db:migrate",
"db:undo": "sequelize db:migrate:undo:all",
"db:seed": "sequelize db:seed:all",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allebd/swapi.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/allebd/swapi/issues"
},
"homepage": "https://github.com/allebd/swapi#readme",
"dependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"axios": "^0.19.0",
"cors": "^2.8.5",
"cross-env": "^6.0.0",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"morgan": "^1.9.1",
"npm-run-all": "^4.1.5",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"redis": "^2.8.0",
"sequelize": "^5.19.1",
"swagger-ui-express": "^4.1.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"sequelize-cli": "^5.5.1"
},
"engines": {
"node": "10.16.3"
},
"nyc": {
"exclude": "src/services",
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text",
"html"
],
"sourceMap": true,
"instrument": true
}
}