-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "findmates-api",
"version": "1.0.0",
"description": "FindMates app - API",
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && babel ./src -d ./dist",
"dev": "nodemon -w src/server.js --exec \"esw && babel-node src/server.js\"",
"lint": "esw --watch",
"seed": "@babel/node src/seedRunner.js",
"test": "nyc mocha --require @babel/register --require @babel/polyfill tests/unit/**/*.test.js --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elszczepano/FindMates-API.git"
},
"author": "Dominik Szczepaniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/elszczepano/FindMates-API/issues"
},
"homepage": "https://github.com/elszczepano/FindMates-API#readme",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"axios": "^0.19.0",
"babel": "^6.23.0",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-plugin-security": "^1.4.0",
"eslint-watch": "^5.1.2",
"faker": "^4.1.0",
"mocha": "^6.1.4",
"mongoose-delete": "^0.5.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2"
},
"dependencies": {
"async": "^3.1.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^6.1.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"mongoose": "^5.6.4",
"multer": "^1.4.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1"
}
}