-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 3.24 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "OpenLab",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">= 7.6.0"
},
"now": {
"dotenv": "variables.env.now"
},
"scripts": {
"start": "node ./start.js",
"watch": "nodemon ./start.js --ignore public/",
"dev": "concurrently \"npm run watch\" \"npm run assets\" --names \"💻,📦\" --prefix name",
"assets": "webpack -w --display-max-modules 0",
"now": "now -e DB_USER=@db_user -e DB_PASS=@db_pass -e NODE_ENV=\"production\" -e PORT=80",
"test": "mocha --timeout 3000",
"web-push": "web-push",
"generate-sw": "workbox inject:manifest"
},
"browserslist": "last 2 versions",
"dependencies": {
"agenda": "^2.3.0",
"agendash": "^0.4.0",
"axios": "0.15.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.17.1",
"cloudinary": "^1.23.0",
"connect-flash": "0.1.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "1.4.3",
"cors": "^2.8.5",
"dat.gui": "^0.7.7",
"dompurify": "0.8.5",
"dotenv": "4.0.0",
"es6-promisify": "5.0.0",
"express": "4.15.2",
"express-fileupload": "^0.4.0",
"express-session": "1.15.1",
"express-validator": "3.1.2",
"faker": "4.1.0",
"file-saver": "^1.3.3",
"flatmap": "0.0.3",
"forever": "0.15.3",
"form-data": "^2.5.1",
"formidable": "^1.2.2",
"get-uri": "^3.0.2",
"glob": "7.1.1",
"hoek": "^5.0.4",
"html-to-text": "3.2.0",
"jimp": "0.2.27",
"js-sha256": "^0.9.0",
"jsdom": "^12.2.0",
"juice": "4.0.2",
"lodash": "^4.17.20",
"md5": "2.2.1",
"moment": "^2.29.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.9",
"mongoose-mongodb-errors": "0.0.2",
"multer": "1.3.0",
"node-deepl": "^1.0.0",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"nodemailer": "3.1.5",
"papaparse": "^4.6.3",
"passport": "0.3.2",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "1.0.0",
"passport-local-mongoose": "4.0.0",
"postmark": "^1.6.1",
"pug": "2.0.0-beta6",
"read-multiple-files": "^2.0.0-4",
"serialize-javascript": "^3.1.0",
"slugify": "^1.4.5",
"slugs": "0.1.3",
"stream": "0.0.2",
"stripe": "^6.36.0",
"uniqid": "^5.2.0",
"uuid": "3.0.1",
"validator": "7.0.0",
"web-push": "^3.4.4"
},
"devDependencies": {
"autoprefixer": "6.7.7",
"babel-core": "6.24.0",
"babel-eslint": "^10.1.0",
"babel-loader": "6.4.0",
"babel-preset-es2015": "6.24.0",
"concurrently": "3.4.0",
"css-loader": "0.27.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-wesbos": "^1.0.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-text-webpack-plugin": "2.1.0",
"mocha": "^5.2.0",
"node-sass": "4.12.0",
"nodemon": "1.11.0",
"postcss-loader": "1.3.3",
"prettier": "^2.3.2",
"sass-loader": "6.0.3",
"webpack": "2.2.1",
"workbox-cli": "^2.1.3"
},
"eslintConfig": {
"extends": [
"wesbos"
]
}
}