-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.56 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
{
"name": "reviews_component",
"version": "1.0.0",
"description": "replica of lululemon reviews module for educational purposes",
"main": "./server/index.js",
"scripts": {
"test": "jest",
"start": "nodemon",
"build": "webpack --w --mode development",
"watch": "webpack-dev-server --open",
"seed": "node --max-old-space-size=8192 ./database/seed.js",
"seed-products-to-db": "mongoimport --type csv -d test -c products --headerline --drop products.csv",
"seed-reviews-to-db": "mongoimport --type csv -d test -c reviews --fields id,rating,title,review,recommendation,nickname,email,age,bodytype,location,wearTo,likes,dislikes --drop reviews.csv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JJACD/reviews_component.git"
},
"author": "Danny San",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"axios": "0.19.2",
"body-parser": "1.19.0",
"cors": "2.8.5",
"csv-write-stream": "^2.0.0",
"events": "^3.1.0",
"express": "4.17.1",
"faker": "^4.1.0",
"moment": "2.18.1",
"mongodb": "^2.2.33",
"mongoose": "5.9.7",
"morgan": "1.10.0",
"nodemon": "2.0.2",
"pg": "^8.2.1",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"@shelf/jest-mongodb": "^1.1.5",
"babel-jest": "^26.0.1",
"babel-loader": "8.1.0",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"html-webpack-plugin": "^4.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.1.3",
"supertest": "^4.0.2",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
},
"bugs": {
"url": "https://github.com/JJACD/reviews_component/issues"
},
"homepage": "https://github.com/JJACD/reviews_component#readme"
}