-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 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
{
"name": "week7-crakt",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "PGDATABASE=localtest tape tests/*.test.js | tap-spec",
"dev": "nodemon server.js",
"setupdb": "node db/build.js",
"format": "prettier --write '**/*.{js,css,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac19/week7-CRaKT.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac19/week7-CRaKT/issues"
},
"homepage": "https://github.com/fac19/week7-CRaKT#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"ci": "^1.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.0.2"
},
"devDependencies": {
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.13.2"
}
}