-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "photo-carousel",
"version": "1.0.0",
"description": "photo carousel for FEC",
"main": "index.js",
"scripts": {
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"seed": "node db/seed.js",
"test": "jest",
"build": "webpack --mode production",
"lint": "eslint",
"server": "node index.js"
},
"author": "Will Hudson",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.10.4",
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cloudinary": "^1.22.0",
"express": "^4.17.1",
"jest": "^26.1.0",
"jquery": "^3.5.1",
"moment": "^2.27.0",
"mongo-seeding": "^3.4.1",
"mongo-seeding-cli": "^3.4.1",
"mongoose": "^5.9.19",
"nodemon": "^2.0.4",
"pug": "^3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1",
"webpack": "^4.43.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"eslint": "^7.3.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"webpack-cli": "^3.3.12"
}
}