-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "community",
"version": "0.1.0",
"description": "DAV community site server",
"license": "MIT",
"author": "Abhishek Singh <abhishek@shek.it>",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/DAVFoundation/community.git"
},
"bugs": {
"url": "https://github.com/DAVFoundation/community/issues"
},
"homepage": "https://github.com/DAVFoundation/community#readme",
"scripts": {
"build": "node ./node_modules/gulp/bin/gulp.js build",
"start": "node ./node_modules/gulp/bin/gulp.js run",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@sendgrid/mail": "^6.1.4",
"@turf/random": "^4.7.3",
"bcrypt": "^1.0.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"connect-mongo": "^1.3.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-session": "^1.15.6",
"forever": "^0.15.3",
"geojson-random": "^0.4.0",
"md5": "^2.2.1",
"mongodb-migrations": "^0.8.5",
"mongoose": "^4.12.4",
"mongoose-timestamp": "^0.6.0",
"mongoose-url-slugs": "^1.0.2",
"morgan": "^1.9.0",
"node-fetch": "^1.7.3",
"nodemailer": "^4.4.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"randomstring": "^1.1.5",
"uuid": "^3.1.0",
"web3": "^0.20.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"gulp": "^3.9.1",
"nodemon": "^1.12.1",
"source-map-support": "^0.4.18",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
}
}