-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "reviews_module",
"version": "1.0.0",
"description": "A reviews module to be used as part of our 'Glossier.com' product page recreation.",
"main": "server/index.js",
"author": "Andrew More <recondomore@gmail.com>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+/~https://github.com/Dumpling-Squad/reviews-module.git"
},
"keywords": [],
"bugs": {
"url": "/~https://github.com/Dumpling-Squad/reviews-module/issues"
},
"homepage": "/~https://github.com/Dumpling-Squad/reviews-module#readme",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start": "nodemon ./server/index.js",
"test": "jest --coverage",
"build": "webpack -w -d",
"seed": "node ./db/seeds/"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jquery": "^3.5.1",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-clamp-lines": "^3.0.2",
"react-dom": "^16.13.1",
"react-js-pagination": "^3.0.3",
"react-star-ratings": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"faker": "^4.1.0",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}