This repository has been archived by the owner on Nov 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.29 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "papi",
"version": "0.1.0",
"description": "Backend API for photography portfolio management.",
"repository": {},
"license": "MIT",
"main": "index.js",
"scripts": {
"check": "npm run format && npm run lint",
"dev": "NODE_ENV=development nodemon index.js",
"format": "prettier --write \"**/*.+(js|yml|yaml|json)\"",
"lint": "eslint .",
"start": "node index.js",
"test": "NODE_ENV=test ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha \"./test/tests/**/*.js\"",
"coveralls": "./node_modules/nyc/bin/nyc.js report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"jsdoc": "./node_modules/jsdoc/jsdoc.js --destination ./docs -R README.md -c ./jsdoc.json",
"build:test": "docker-compose -f .docker/test/docker-compose.yml down && docker-compose -f .docker/test/docker-compose.yml up --remove-orphans"
},
"devDependencies": {
"child_process": "1.0.2",
"coveralls": "3.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-mocha": "7.0.1",
"eslint-plugin-node": "9.0.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"faker": "4.1.0",
"husky": "2.3.0",
"mocha": "7.2.0",
"nodemon": "1.19.0",
"nyc": "15.0.1",
"prettier": "1.17.1",
"should": "13.2.3",
"supertest": "4.0.2"
},
"dependencies": {
"@koa/cors": "2.2.3",
"@koa/router": "8.0.8",
"bcryptjs": "2.4.3",
"dotenv": "8.0.0",
"jwt-simple": "0.5.6",
"knex": "0.21.1",
"koa": "2.7.0",
"koa-body": "4.1.3",
"koa-bodyparser": "4.2.1",
"koa-compress": "3.0.0",
"koa-docs": "2.1.0",
"koa-helmet": "4.1.0",
"koa-logger": "3.2.0",
"koa-passport": "4.1.3",
"koa-protect": "1.0.1",
"koa-ratelimit": "4.2.1",
"koa-session": "6.0.0",
"koa-static": "5.0.0",
"koa-validate": "1.0.7",
"koa2-ctx-validator": "1.0.4",
"moment": "2.26.0",
"passport": "0.4.1",
"passport-auth-token": "1.0.1",
"passport-local": "1.0.0",
"pg": "8.2.1",
"sharp": "0.25.4",
"underscore": "1.10.2",
"uuid": "3.3.2"
}
}