-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "react_blog_backend",
"version": "1.0.0",
"description": "A publishing platform",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "cross-env DB_ENV=testing jest --detectOpenHandles --verbose --forceExit",
"pretest": "npx knex migrate:latest --env=testing"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LABS-EU3/react_blog_backend.git"
},
"author": "The React Blog Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/LABS-EU3/react_blog_backend/issues"
},
"homepage": "https://github.com/LABS-EU3/react_blog_backend#readme",
"devDependencies": {
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"aws-sdk": "^2.814.0",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cloudinary": "^1.18.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"formidable": "^1.2.1",
"helmet": "^3.21.2",
"jimp": "^0.9.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.4",
"lodash": "^4.17.15",
"mailgen": "^2.0.10",
"multer": "^1.4.2",
"pg": "^7.14.0",
"pusher": "^3.0.0",
"pusher-js": "^5.0.3",
"sharp": "^0.24.0",
"sqlite3": "^4.1.1"
}
}