-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "lpm",
"version": "1.0.0",
"description": "Ironhack Project Mod2",
"main": "index.js",
"scripts": {
"start": "npm-run-all build server",
"dev": "npm-run-all build server",
"transpile": "babel ./server --out-dir dist-server --copy-files",
"clean": "rm -rf dist-server",
"build": "npm-run-all clean transpile",
"server": "node ./dist-server/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ingridpitta/lpm.git"
},
"author": "Ingrid Pitta / Caio Andreolli",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/runtime": "^7.9.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cloudinary": "^1.21.0",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.3.1",
"datauri": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"hbs": "^4.1.0",
"materialize-css": "^1.0.0-rc.2",
"mongoose": "^5.9.4",
"mongoose-findorcreate": "^3.0.0",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.1",
"node-sass": "^4.13.1",
"node-sass-middleware": "^0.11.0",
"npm-run-all": "^4.1.5",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-local": "^1.0.0",
"@babel/plugin-transform-runtime": "^7.9.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.2"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"ignore": [
"./server/public/js/materialize.js",
"./server/public/js/materialize.min.js",
"./server/public/js/editImageSignUp.js",
"./server/public/js/location.js",
"./server/public/js/moment.js",
"./server/public/js/moment-with-locales.js",
"./server/public/js/deal.js"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
},
"bugs": {
"url": "https://github.com/ingridpitta/lpm/issues"
},
"homepage": "https://github.com/ingridpitta/lpm#readme"
}