-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "y",
"version": "1.0.0",
"engines": {
"node": "v10.16.0"
},
"description": "A full-stack app for people who like reading news online",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dbBuild": "node src/model/db_build.js",
"watch": "nodemon src/index.js",
"lint": "eslint .",
"test": "NODE_ENV=test tape src/tests/*tests.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gminova/latest-news.git"
},
"author": "G. Minova",
"license": "MIT",
"bugs": {
"url": "https://github.com/gminova/latest-news/issues"
},
"homepage": "https://github.com/gminova/latest-news#readme",
"devDependencies": {
"eslint": "^6.2.2",
"eslint-plugin-react": "^7.14.3",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-handlebars": "3.1.0",
"jsonwebtoken": "^8.5.1",
"pg": "^7.12.1",
"serve-favicon": "^2.5.0"
}
}