-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 KB
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
49
50
51
{
"name": "student-help",
"version": "1.0.0",
"description": "## Project Team @mahmne , @moath14 , @Ghadeer93 :relaxed:",
"main": "index.js",
"scripts": {
"db:build": "node src/models/database/db_build.js",
"test": "npm run db:build && tape test/**/*.test.js",
"test:local": " node test/database.test.js",
"coverage": "nyc npm run test",
"db:create": "psql -c 'CREATE DATABASE tests;' -U postgres -h localhost",
"db:drop": "psql -c 'DROP DATABASE IF EXISTS tests;' -U postgres -h localhost",
"start:watch": "nodemon -x 'npm start'",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACG2/Student-Help.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACG2/Student-Help/issues"
},
"homepage": "https://github.com/FACG2/Student-Help#readme",
"devDependencies": {
"nodemon": "^1.12.1",
"pre-commit": "^1.2.2",
"semistandard": "^11.0.0",
"shot": "^3.4.2",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"dependencies": {
"jsonwebtoken": "^8.0.1",
"env": "0.0.2",
"env2": "^2.2.0",
"express-validator": "^4.1.1",
"cookie": "^0.3.1",
"bcryptjs": "^2.4.3",
"pg": "^7.3.0",
"path": "^0.12.7",
"nyc": "^11.2.1",
"body-parser": "^1.18.1",
"express-handlebars": "^3.0.0",
"cookie-parser": "^1.4.3",
"istanbul": "^0.4.5",
"express": "^4.15.4"
}
}