-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.73 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
{
"name": "imageCarousel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"start": "node ./server/index.js",
"seed": "node ./server/db/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Draftbnb/imageCarousel.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Draftbnb/imageCarousel/issues"
},
"homepage": "https://github.com/Draftbnb/imageCarousel#readme",
"dependencies": {
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"faker": "^4.1.0",
"jest": "^25.1.0",
"mongoose": "^5.8.9",
"morgan": "^1.9.1",
"nodemon": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"regenerator-runtime": "^0.13.3",
"styled-components": "^5.0.0",
"svg-inline-loader": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"react-inlinesvg": "^1.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}