-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 943 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 943 Bytes
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
{
"name": "blog-backend",
"private": true,
"repository": "https://github.com/coockoo/blog-backend",
"version": "1.0.0",
"description": "Backend service for blog",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --config .nodemon.config.json src/index.js",
"test": "jest"
},
"author": "Oleksandr Bondarchuk <alex.coockoo@gmail.com> (https://github.com/coockoo)",
"license": "UNLICENSED",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-require-path-exists": "^1.1.9",
"nodemon": "^2.0.2",
"prettier": "^2.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^15.0.0",
"http-shutdown": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.13",
"lodash": "^4.17.19",
"ms": "^2.1.2",
"nanoid": "^3.0.2",
"on-finished": "^2.3.0",
"pg": "^8.0.0"
}
}