-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "Smoothiz",
"version": "1.0.0",
"description": "Smoothies social platform for smoothiz lovers!",
"main": "run-server.js",
"engines": {
"node": "10.3.0"
},
"scripts": {
"start": "node run-server.js",
"dev": "export NODE_ENV=development; export DEBUG=*; nodemon run-server.js",
"test": "NODE_ENV=test mocha",
"lint": "eslint --format=node_modules/eslint-formatter-pretty --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "https://github.com/kheyro/smoothiz.git"
},
"keywords": [
"expressjs",
"express"
],
"author": "Denis Atkesone",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.1.0",
"prettier": "^1.12.1",
"supertest": "^3.0.0"
},
"dependencies": {
"aws-sdk": "^2.252.1",
"bcrypt": "^2.0.1",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bookshelf": "^0.13.3",
"bookshelf-cascade-delete": "^2.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.1",
"knex": "^0.14.6",
"mime": "^2.3.1",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"multer-s3-transform": "^2.3.2",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1",
"serve-favicon": "^2.5.0",
"sharp": "^0.20.3"
}
}