-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 984 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
{
"name": "week-7-langs",
"version": "1.0.0",
"description": "Week 7 Group",
"main": "index.js",
"scripts": {
"test": "tape ./src/tests/router.tests.js | tap-spec",
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-17/week-7-langs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-17/week-7-langs/issues"
},
"homepage": "https://github.com/fac-17/week-7-langs#readme",
"devDependencies": {
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"nock": "^10.0.6",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie": "^0.4.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.12.1"
}
}