-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.08 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
{
"name": "wehire",
"version": "0.1.0",
"description": "wehire",
"main": "server/index",
"scripts": {
"dev": "nodemon --watch server & webpack --watch",
"test": "ava -v test/**/*.test.js",
"eslint": "eslint src test",
"start": "node server",
"postinstall": "webpack"
},
"keywords": [
"react",
"redux"
],
"author": "EDA",
"license": "ISC",
"dependencies": {
"auth0-js": "^8.8.0",
"auth0-lock": "^10.18.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.1.2",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"input-moment": "^0.3.4",
"jsonwebtoken": "^7.4.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongodb": "^2.2.29",
"pg": "^6.4.0",
"prop-types": "^15.5.10",
"react": "^15.3.0",
"react-bootstrap": "^0.31.0",
"react-bootstrap-navbar": "^1.1.0",
"react-dom": "^15.3.0",
"react-dropzone": "^3.13.3",
"react-input-moment": "git://github.com/daffron/react-input-moment.git",
"react-modal-dialog": "^4.0.7",
"react-nav-bar": "^0.6.5",
"react-redux": "^4.4.5",
"react-router-dom": "^4.1.1",
"react-stripe-checkout": "^2.4.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"stripe": "^4.23.1",
"superagent": "^2.2.0",
"webpack": "^2.6.1"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"devDependencies": {
"ava": "^0.19.1",
"css-loader": "^0.28.4",
"enzyme": "^2.8.2",
"nock": "^9.0.13",
"nodemon": "^1.11.0",
"style-loader": "^0.18.2",
"supertest": "^3.0.0",
"webpack-dev-server": "^2.4.5",
"webpack-livereload-plugin": "^0.11.0"
}
}