-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.68 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.68 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"author": "randolph gordon - randolph.gordon@poplogics.com",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"connected-react-router": "^6.9.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-graphql": "^0.12.0",
"framer-motion": "^4.1.17",
"global": "^4.4.0",
"graphql": "^16.3.0",
"jest-cli": "^27.4.7",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mirco": "^0.0.1",
"mongodb": "^4.3.1",
"mongoose": "^6.1.9",
"node-sass": "^5.0.0",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-perf-devtool": "^3.1.8",
"react-redux": "^7.2.4",
"react-router-dom": "6",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "^4.0.3",
"redux": "^4.1.1",
"redux-actions": "^2.6.5",
"redux-persist": "^6.0.0",
"reselect": "^4.0.0",
"sass-loader": "^11.0.0",
"ts-jest": "^27.1.1",
"typesafe-actions": "^5.1.0",
"typescript": "^4.4.2",
"uuidv4": "^6.2.12"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/jquery": "^3.5.13",
"@types/lodash": "^4.14.178",
"@types/node": "^16.7.10",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.18",
"@types/react-router-redux": "^5.0.19",
"@types/redux-actions": "^2.6.2",
"@types/redux-logger": "^3.0.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "4.8.1",
"@welldone-software/why-did-you-render": "^6.2.3",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"react-redux-typescript-scripts": "^1.6.2",
"ts-node": "^10.4.0"
},
"eslintConfig": {
"extends": "react-app"
},
"name": "hangman",
"private": true,
"scripts": {
"start": "node server/index.js",
"react": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"postinstall": "tsc",
"nodemon": "nodemon server/app.js",
"test": "jest"
},
"version": "0.1.0",
"proxy": "http://localhost:8001"
}