-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "ToVaHayGi",
"version": "1.0.0",
"description": "STACKMATCH - a website to find FAC alums and students by their technical stack skills.",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test-db": "NODE_ENV=test node ./src/test/db.test.js | tap-spec",
"test": "nyc tape ./src/test/*.test.js | tap-spec",
"coverage": "nyc --reporter=lcov --reporter=text-lcov tape ./src/test/test.js | tap-spec",
"lint": "/node_modules/.bin/eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-13/ToVaHayGi.git"
},
"author": "Vanessa, Haydn, Giulia, Tom",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-13/ToVaHayGi/issues"
},
"homepage": "https://github.com/fac-13/ToVaHayGi#readme",
"dependencies": {
"bcrypt": "^2.0.0",
"bcryptjs": "^2.4.3",
"cookie": "^0.3.1",
"env2": "^2.2.0",
"jsonwebtoken": "^8.2.1",
"pg": "^7.4.1",
"pg-promise": "^8.2.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"nodemon": "^1.17.3",
"nyc": "^11.6.0",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.9.0"
}
}