-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.6 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
{
"name": "mail-server",
"version": "0.0.1",
"description": "Bulk mailing service",
"main": "server/dist/index.js",
"scripts": {
"client:build": "NODE_ENV=production node_modules/.bin/webpack --config client/webpack.config.js",
"client:watch": "node_modules/.bin/webpack-dev-server --config client/webpack.config.js",
"lint": "node_modules/.bin/tslint -c tslint.json 'client/src/**/*.ts' 'server/src/**/*.ts'",
"lint-fix": "node_modules/.bin/tslint --fix -c tslint.json 'client/src/**/*.ts' 'server/src/**/*.ts'",
"prepare": "npm run server:build",
"server:build": "node_modules/.bin/tsc -p server",
"server:start": "node server/dist/index.js",
"server:watch": "node_modules/.bin/tsc -w -p server",
"server:watch-run": "nodemon -w server/dist server/dist/index.js",
"test": "node_modules/.bin/mocha -r ts-node/register 'server/tests/**/*.ts'"
},
"author": "",
"private": true,
"dependencies": {
"@types/bluebird": "^3.5.20",
"@types/cors": "^2.8.3",
"@types/csv-stringify": "^1.4.2",
"@types/express": "^4.11.1",
"@types/generic-pool": "^3.1.2",
"@types/handlebars": "^4.1.0",
"@types/lodash": "^4.14.106",
"@types/lodash-es": "^4.17.0",
"@types/nodemailer": "^4.6.0",
"@types/papaparse": "^4.5.9",
"@types/query-string": "^5.1.0",
"@types/react-dom": "^16.0.7",
"@types/react-notification-system": "^0.2.37",
"@types/react-notification-system-redux": "^1.1.5",
"@types/react-onclickoutside": "^6.0.3",
"@types/react-redux": "^6.0.8",
"@types/react-tabs": "^1.0.4",
"@types/react-transition-group": "^2.0.7",
"@types/redis": "^2.8.6",
"@types/request-promise": "^4.1.43",
"@types/uuid": "^3.4.4",
"@types/validator": "^9.4.1",
"@types/winston": "^2.3.8",
"ajv": "^6.4.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"cron-converter": "0.0.12",
"csv-stringify": "^4.3.1",
"express": "^4.16.3",
"generic-pool": "^3.4.2",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"lodash-es": "^4.17.10",
"moment": "^2.22.1",
"nodemailer": "^4.6.3",
"papaparse": "^5.2.0",
"pell": "^1.0.4",
"pretty": "^2.0.0",
"query-string": "^6.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-notification-system": "^0.2.17",
"react-notification-system-redux": "^1.2.0",
"react-onclickoutside": "^6.7.1",
"react-redux": "^5.0.7",
"react-tabs": "^2.2.2",
"react-transition-group": "^2.3.0",
"redis": "^2.8.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"tslib": "^1.10.0",
"uuid": "^3.3.2",
"validator": "^10.7.1",
"winston": "^2.4.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.0.0",
"@types/sinon": "^4.3.1",
"@types/sinon-express-mock": "^1.3.6",
"babel-plugin-transform-react-jsx": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"css-loader": "^3.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.1.0",
"mocha": "^5.0.5",
"node-sass": "^4.13.1",
"nodemon": "^1.19.1",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"sinon": "^4.5.0",
"sinon-express-mock": "^2.1.0",
"style-loader": "^0.20.3",
"ts-loader": "^4.1.0",
"ts-node": "^5.0.1",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"typescript": "^3.0.3",
"webpack": "^4.3.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.7.1",
"whatwg-fetch": "^2.0.3"
}
}