-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 924 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
{
"name": "medium-clone",
"version": "0.0.1",
"repository": "https://github.com/the-vampiire/medium-clone",
"description": "Medium API REST clone",
"main": "app",
"scripts": {
"test": "NODE_ENV=test jest --runInBand",
"test:travis": "npm test -- --no-cache --coverage && cat ./coverage/lcov.info | coveralls",
"dev": "NODE_ENV=development nodemon",
"start": "NODE_ENV=production node ./app"
},
"author": "the-vampiire",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"crypto-js": "^3.1.9-1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.9",
"sanitize-html": "^1.20.0"
},
"devDependencies": {
"coveralls": "^3.0.4",
"jest": "^24.1.0",
"nodemon": "^1.18.9",
"supertest": "^3.4.2"
}
}