-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 KB
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
{
"name": "FEC-carousel-service",
"version": "",
"description": "",
"author": "Michelle Ward",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"build": "webpack --watch",
"seed": "node database/seed.js",
"start": "nodemon server/server.js",
"test": "jest",
"start-container": "node database/seed.js & webpack & node server/server.js"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"faker": "^5.2.0",
"mongoose": "^5.11.12",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"react": "^16.12.0",
"react-dev": "0.0.1",
"react-dom": "^16.12.0",
"react-router-dom": "^5.2.0",
"react-slick": "^0.27.14",
"slick-carousel": "^1.8.1",
"styled-components": "^5.2.1",
"styled-icons": "^10.25.0",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1"
},
"devDependencies": {
"babel-jest": "^26.6.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2"
}
}