This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
forked from wardleApp/Wardle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.48 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
{
"name": "Paymo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "",
"engines": {
"node": ">=8.7.0",
"npm": ">=5.4.2"
},
"scripts": {
"heroku-postbuild": "webpack -p --config ./webpack.config.js",
"react-dev": "webpack -d --watch",
"start": "nodemon server/index.js",
"test": "mocha test/index.js"
},
"dependencies": {
"@sendgrid/mail": "^6.2.0",
"axios": "^0.17.1",
"babel-cli": "^6.7.5",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"jquery": "^3.1.1",
"knex": "^0.14.2",
"material-ui": "^0.20.0",
"moment": "^2.20.1",
"morgan": "^1.9.0",
"nodemailer": "^4.4.1",
"nodemon": "^1.14.10",
"pg": "^7.4.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-form-validator-core": "^0.3.0",
"react-material-ui-form-validator": "^1.0.5",
"react-router-dom": "^4.2.2",
"sendgrid": "^5.2.3",
"socket.io": "^2.0.4",
"underscore": "^1.8.3",
"webpack": "^2.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0",
"supertest": "^3.0.0"
},
"babel": {
"presets": [
"es2015"
]
}
}