-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
{
"name": "product-component",
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/spec/setupTests.js"
]
},
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon ./server/index.js",
"build": "webpack -d --watch",
"test": "jest",
"seed": "node ./db/productSeed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamNixon/product-component.git"
},
"author": "Rylan Albach",
"license": "ISC",
"bugs": {
"url": "https://github.com/TeamNixon/product-component/issues"
},
"homepage": "https://github.com/TeamNixon/product-component#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"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",
"jest": "^25.5.2",
"jest-webpack": "^0.5.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"axios": "^0.19.2",
"babel-preset-jest": "^26.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"css-loader": "^3.5.3",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"font-awesome": "^4.7.0",
"mongo": "^0.1.0",
"mongoose": "^5.9.11",
"mongoose-seed": "^0.6.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.3",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-inner-image-zoom": "^1.0.5",
"react-star-ratings": "^2.3.0",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.2.1",
"url": "^0.11.0"
}
}