-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "cryptonews-server",
"version": "0.0.1",
"main": "server.js",
"repository": "https://github.com/roywalker/cryptonews-server.git",
"author": "Roy Walker",
"license": "MIT",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"db:migrate": "knex migrate:latest --knexfile=./data/knex/knexfile.js",
"db:seed": "knex seed:run --knexfile=./data/knex/knexfile.js",
"test": "NODE_ENV=test jest --watchAll"
},
"dependencies": {
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-async-errors": "^3.1.1",
"express-validator": "^5.3.1",
"helmet": "^3.16.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.5",
"nanoid": "^2.0.1",
"pg": "^7.9.0",
"url-slug": "^2.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"prettier": "^1.17.0",
"supertest": "^4.0.2"
},
"prettier": {
"singleQuote": true
}
}