-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 994 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
41
{
"name": "medium-clone",
"version": "1.0.0",
"description": "a basic medium.com clone",
"main": "server.js",
"scripts": {
"test": "nyc mocha tests --timeout 10000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage4/Bears-Team-5.git"
},
"author": "chingu voyage-4, bears team 5",
"license": "MIT",
"bugs": {
"url": "https://github.com/chingu-voyage4/Bears-Team-5/issues"
},
"homepage": "https://github.com/chingu-voyage4/Bears-Team-5#readme",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^8.1.0",
"express": "^4.16.2",
"express-validator": "^5.0.3",
"jsonwebtoken": "^8.2.0",
"moment": "^2.22.0",
"mysql": "^2.15.0",
"shortid": "^2.2.8",
"slug": "^0.9.1"
},
"engines": {
"node": "8.11.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.0.4",
"nyc": "^14.1.1",
"supertest": "^3.0.0"
}
}