-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.06 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
{
"name": "family-tree",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node server",
"dev": "concurrently \"npm run start\" \"npx webpack serve\"",
"server": "concurrently \"npm run start\" \"npx webpack --mode=development\""
},
"author": "Alexander Nedopaka (https://github.com/ANScorp)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.0",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@meanie/mongoose-to-json": "^2.5.0",
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"classnames": "^2.2.6",
"concurrently": "^6.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"mongoose": "^5.11.18",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-timeago": "^5.2.0",
"react-toastify": "^7.0.3",
"react-zoom-pan-pinch": "^1.6.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"socket.io": "^3.1.2",
"socket.io-client": "^3.1.2",
"styled-components": "^5.2.1",
"uuid": "^8.3.2",
"validator": "^13.5.2"
}
}