forked from UBC-LFS/lfs-mass-mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
{
"name": "lfs-mass-mailer",
"version": "0.1.0",
"private": true,
"description": "Versatile mail application for UBC LFS",
"author": "Patrick Lin <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": "~6.9.1",
"npm": ">=3.10.0"
},
"scripts": {
"prestart": "npm run -s build",
"start": "node dist/index.js",
"heroku-postbuild": "npm install && npm run build-react && npm run build",
"prod": "npm run build-react && npm run build",
"build": "npm run clean && shx mkdir -p dist && babel server -s -D -d dist",
"start-react": "react-scripts start",
"build-react": "rimraf -rf public/build && react-scripts build && shx mv build public",
"dev": "nodemon src/index.js --exec \"node -r dotenv/config -r babel-register\"",
"clean": "rimraf dist",
"test-react": "react-scripts test --env=jsdom",
"test": "jest && codecov",
"eject": "react-scripts eject",
"cypress-open": "cypress open"
},
"cacheDirectories": [
"node_modules"
],
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"csv-parse": "^4.12.0",
"express": "^4.16.2",
"fast-csv": "^2.4.1",
"material-ui": "^0.20.0",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"nodemailer": "^4.4.1",
"papaparse": "^5.3.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-quill": "^1.2.3",
"react-responsive-table": "^2.0.15",
"react-scripts": "1.0.17",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-jest": "^22.0.4",
"babel-register": "^6.26.0",
"codecov": "^3.0.0",
"cypress": "^1.4.1",
"dotenv": "^4.0.0",
"jest": "^22.0.5",
"nodemon": "^1.14.10",
"shx": "^0.2.2",
"standard": "^10.0.3",
"supertest": "^3.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/cypress/"
]
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
}
}