-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
48
{
"name": "Tweet-Your-Opinion",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_ENV=test node tests/routes_test.js | tap-spec && NODE_ENV=test node tests/db_test.js | tap-spec",
"dbtest": "NODE_ENV=test tests/db_test.js | tap-spec",
"routestest": "node tests/routes_test.js | tap-spec",
"start": "NODE_ENV=production node src/index.js",
"dev": "NODE_ENV=development nodemon src/index.js",
"kill": "fuser -k 5000/tcp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G7/Tweet-Your-Opinion.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G7/Tweet-Your-Opinion/issues"
},
"homepage": "https://github.com/GSG-G7/Tweet-Your-Opinion#readme",
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"env2": "^2.2.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"pg": "^7.12.1",
"serve-favicon": "^2.5.0"
}
}