-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.21 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
71
72
73
74
75
{
"name": "projCatWalk",
"version": "1.0.0",
"description": "This is the repo for our Hackreactor FEC project 1. More info comming soon!",
"main": "index.js",
"scripts": {
"dev-client": "webpack --watch --mode=development",
"dev-server": "nodemon ./server/server.js",
"test": "jest --coverage",
"build": "webpack --mode=production",
"start": "node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentomeister/projCatWalk.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kentomeister/projCatWalk/issues"
},
"homepage": "https://github.com/kentomeister/projCatWalk#readme",
"dependencies": {
"@hookform/resolvers": "^2.4.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"axios": "^0.21.1",
"babel-plugin-add-react-displayname": "0.0.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fuse.js": "^6.4.6",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-formdata": "^3.0.0",
"react-hook-form": "^7.2.3",
"react-icons": "^4.2.0",
"react-modal": "^3.13.1",
"react-router-dom": "^5.2.0",
"react-share": "^4.4.0",
"typescript": "^4.2.4",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"react-test-renderer": "^17.0.2",
"supertest": "^6.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}