-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 932 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
40
41
42
43
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/back-end-test.js",
"lint": "semistandard --fix",
"start": "node src/server.js",
"watch": "nodemon src/server.js",
"test": "node test/back-end-test.js | tap-spec"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FACG2/Blog.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACG2/Blog/issues"
},
"homepage": "https://github.com/FACG2/Blog#readme",
"devDependencies": {
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"shot": "^3.4.2",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie": "^0.3.1",
"env2": "^2.2.0",
"jsonwebtoken": "^7.4.3",
"pg": "^7.1.2"
}
}