-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "images-service",
"version": "1.0.0",
"description": "images service for FEC WaterBnB",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/index.js",
"dev": "webpack-dev-server --open=3001",
"build": "webpack -d --watch",
"seed": "node database/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FEC-Gai/images-service.git"
},
"author": "Amanda",
"license": "ISC",
"bugs": {
"url": "https://github.com/FEC-Gai/images-service/issues"
},
"homepage": "https://github.com/FEC-Gai/images-service#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"cloudinary": "^1.22.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"mongoose": "^5.9.27",
"multer": "^1.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-fontawesome": "^1.7.1",
"react-router-dom": "^5.2.0",
"request": "^2.88.2",
"streamifier": "^0.1.1",
"styled-components": "^5.2.0",
"underscore": "^1.10.2",
"unsplash-js": "^6.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}