This repository was archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.28 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
{
"name": "@mixnjuice/api",
"version": "0.1.0",
"description": "A simple REST API for recipe and flavor information",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:mixnjuice/api.git"
},
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"start": "node lib/index.js",
"migrate": "node lib/migrate.js",
"start-mock": "cross-env API_TOKEN_VALIDATE=false node lib/index.js",
"test": "jest",
"upload-coverage": "bash <(curl -s https://codecov.io/bash)"
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"aws-sdk": "^2.686.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dayjs": "^1.8.28",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"lodash": "^4.17.15",
"lodash.merge": "^4.6.2",
"nanoid": "^3.1.9",
"passport": "^0.4.1",
"passport-anonymous": "^1.0.1",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"postgrator": "^4.0.0",
"response-time": "^2.3.2",
"sequelize": "^5.21.11",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-regenerator": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/register": "^7.10.1",
"@mixnjuice/sequelize-mock": "^0.11.1",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-nodemon": "^2.5.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.7",
"oauth2orize": "^1.11.0",
"opener": "^1.5.1",
"passport-http-bearer": "^1.0.1",
"passport-mock-strategy": "^2.0.0",
"prettier": "^2.0.5",
"prettier-eslint": "^10.1.1",
"superagent-use": "^0.1.0",
"supertest": "^4.0.2",
"supertest-capture-error": "^1.0.0"
}
}