-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.2 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
110
111
112
113
114
{
"name": "weconnect",
"version": "1.0.0",
"description": "WeConnect provides a platform that brings businesses and individuals together. This platform creates awareness for businesses and gives the users the ability to write reviews about the businesses they have interacted with",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development gulp build && gulp nodemon",
"start": "node ./build/server.js",
"postinstall": "gulp build",
"test": "gulp test",
"client:test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saheedt/WeConnect.git"
},
"keywords": [
"business",
"review",
"connect"
],
"author": "Saheed Ajibulu",
"license": "MIT",
"bugs": {
"url": "https://github.com/saheedt/WeConnect/issues"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/client/tests/unit/mocks/browserMocks.js",
"<rootDir>/client/tests/unit/setup.js"
],
"roots": [
"<rootDir>/client/tests/unit/"
]
},
"homepage": "https://github.com/saheedt/WeConnect#readme",
"devDependencies": {
"chai": "4.1.2",
"chai-enzyme": "^1.0.0-beta.1",
"eslint": "4.18.2",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"gulp-nodemon": "^2.4.2",
"jest": "23.4.2",
"moxios": "0.4.0",
"redux-mock-store": "1.5.3",
"sinon": "6.1.4",
"supertest": "3.0.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@sendgrid/mail": "6.2.1",
"axios": "0.18.0",
"babel-core": "^6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"bcrypt": "3.0.3",
"body-parser": "1.18.2",
"classnames": "2.2.6",
"cloudinary": "1.11.0",
"cors": "2.8.4",
"css-loader": "0.28.11",
"dotenv": "5.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "1.1.1",
"express": "4.16.2",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"fs": "0.0.1-security",
"gulp": "3.9.1",
"gulp-babel": "7.0.1",
"gulp-exit": "0.0.2",
"gulp-inject-modules": "1.0.0",
"gulp-istanbul": "1.1.3",
"gulp-jasmine-node": "1.0.7",
"gulp-sequence": "1.0.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.1.0",
"jsdom": "11.12.0",
"jsonwebtoken": "8.2.0",
"jw-react-modal": "1.0.3",
"jwt-decode": "2.2.0",
"morgan": "^1.9.1",
"node-pre-gyp": "^0.12.0",
"node-sass": "^4.11.0",
"pg": "7.4.1",
"pg-hstore": "2.3.2",
"prop-types": "^15.6.2",
"querystring": "0.2.0",
"rc-pagination": "1.16.3",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.7",
"react-router-dom": "4.2.2",
"react-simple-dropdown": "3.2.0",
"redux": "3.7.2",
"redux-thunk": "2.2.0",
"sass-loader": "6.0.7",
"sequelize": "4.36.0",
"style-loader": "0.20.3",
"svg-url-loader": "2.3.2",
"sweetalert": "2.1.0",
"url-loader": "1.0.1",
"webpack": "^4.29.6",
"webpack-dev-middleware": "3.1.3"
}
}