-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "images",
"version": "1.0.0",
"description": "Images Display Component",
"author": "Logan Dudley",
"license": "MIT",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"seed": "node ./database/seed.js",
"start": "nodemon ./server/index.js",
"build": "webpack -d --watch",
"test": "jest"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"babel-plugin-react-css-modules": "^5.2.6",
"css-loader": "^3.2.0",
"express": "^4.17.1",
"file-loader": "^4.2.0",
"mongoose": "^5.6.12",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-image-magnify": "^2.7.4",
"react-slick": "^0.25.2",
"seedrandom": "^3.0.3",
"slick-carousel": "^1.8.1",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}