forked from codeuino/social-platform-donut-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "codeuino",
"version": "1.0.0",
"description": "A social plateform by codeuino",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha tests/*.js",
"report": "nyc --reporter=html mocha tests/*.js",
"lint": "eslint ./tests/**/**.js ./schema/**/**.js ./routes/**/**.js ./controller/**/**.js ./config/**/**.js ./server.js --fix"
},
"author": "Capedcrusader23",
"license": "MIT",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"cookie-session": "^2.0.0-beta.3",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-validator": "^5.3.1",
"jimp": "^0.6.1",
"method-override": "^3.0.0",
"mongo": "^0.1.0",
"mongodb": "^3.1.0",
"mongoose": "^5.4.19",
"multer": "^1.4.1",
"node": "^10.5.0",
"node-memwatch": "^1.0.1",
"nodemon": "^1.18.8",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"request": "^2.88.0",
"socket.io": "^2.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"supertest": "^3.4.2"
}
}