-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.61 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
{
"name": "peri",
"jest": {
"setupTestFrameworkScriptFile": "./__tests__/testSetup.ts"
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --verbose",
"startDev": "webpack -d --watch | nodemon Server/index.js --inspect",
"start": "./node_modules/.bin/webpack -d --watch | node Server/index.js --inspect",
"compile": "./node_modules/.bin/webpack -d --progress --colors --watch",
"seed": "node Db/fakeData/seed.js",
"heroku-postbuild": "webpack --config webpack.production.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.1.4",
"algoliasearch": "^3.24.8",
"async": "^2.6.0",
"axios": "^0.17.1",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "~1.15.2",
"cloudinary-react": "^1.0.4",
"connect-flash": "~0.1.1",
"cookie-parser": "~1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"eslint": "^4.13.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"google-maps-react": "^1.1.2",
"mongodb": "^3.0.0-rc0",
"mongoose": "^4.13.6",
"morgan": "^1.9.0",
"passport": "~0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-google-oauth2": "^0.1.6",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-google-maps": "^9.4.2",
"react-infinite-scroller": "^1.1.2",
"react-instantsearch": "^4.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-skylight": "^0.5.0",
"react-sticky-el": "^1.0.15",
"react-test-renderer": "^16.2.0",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-middleware": "^0.1.21",
"redux-mock-store": "^1.3.0",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"enzyme": "^3.2.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.13.1",
"eslint-config-airbnb-standard": "^1.6.5",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"jest-cli": "^22.0.0",
"leaflet": "^1.2.0",
"nodemon": "^1.12.5",
"react-leaflet": "^1.7.8",
"react-test-renderer": "^16.2.0"
}
}