-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.01 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
{
"name": "dapp-mailer",
"description": "The Dapp Mailer Notification System",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Satya van Heummen",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/"
},
"engines": {
"node": ">= 6.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"build": "./node_modules/.bin/babel -d ./build src",
"start": "babel-watch src ",
"now-start": "node ./build NODE_ENV=production",
"deploy": "now && now alias && now rm dapp-mailer --safe --yes",
"mocha": "mocha test/ --recursive --exit",
"serve": "yarn build && node ./build NODE_ENV=production"
},
"dependencies": {
"@feathersjs/errors": "^3.2.0",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"cors": "^2.8.4",
"express-react-views": "^0.10.4",
"feathers": "2.2.3",
"feathers-configuration": "0.4.2",
"feathers-errors": "2.9.2",
"feathers-hooks": "2.1.2",
"feathers-hooks-common": "3.10.0",
"feathers-mongoose": "6.0.0",
"feathers-rest": "1.8.1",
"feathers-socketio": "2.0.1",
"fs": "^0.0.1-security",
"helmet": "^3.9.0",
"lodash": "^4.17.4",
"mail-time": "^0.1.7",
"mongoose": "4.13.7",
"mustache": "^2.3.0",
"node-mailer": "^0.1.1",
"nodemailer-mailgun-transport": "^1.3.6",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"serve-favicon": "^2.4.5",
"winston": "^2.4.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"eslint": "^4.13.1",
"mocha": "^4.0.1"
}
}