-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.93 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": "reviews-service",
"description": "This will serve up the reviews (paginated), have a \"more+\" option to expand the review, an aggregate stars value",
"author": "",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start-dev": "nodemon ./server/index.js --watch",
"start": "node ./server/index.js",
"build": "webpack --watch",
"seed": "node ./database/seedDB/seedDB.js",
"test": "jest --runInBand --detectOpenHandles --coverage --watchAll=false"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"css-loader": "^3.6.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"faker": "^4.1.0",
"mysql": "^2.18.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16.1": "^1.6.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor.git",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^25.5.4",
"jest-enzyme": "^7.1.2",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"webpack": "^4.44.1"
},
"version": "1.0.0",
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/HRR43-Team-Leia/Reviews-Service.git"
},
"bugs": {
"url": "https://github.com/HRR43-Team-Leia/Reviews-Service/issues"
},
"homepage": "https://github.com/HRR43-Team-Leia/Reviews-Service#readme"
}