-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) Β· 2.01 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
{
"name": "quiz-site",
"version": "1.0.0",
"description": "The main personal project at dev mountain",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "cross-env NODE_ENV=development webpack",
"test": "jest --coverage",
"heroku-postbuild": "npm run build",
"lint": "npx eslint \"./src/**/*.js\" \"./src/**/*.jsx\" \"./*.js\" \"./controllers/*.js\""
},
"keywords": [],
"author": "Josh Parker",
"repository": "https://github.com/joshparkerj/quiz-app-personal-project.git",
"license": "ISC",
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
],
"dependencies": {
"@testing-library/jest-dom": "^5.16.3",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "^1.4.6",
"core-js": "^3.21.1",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"express": "^4.16.4",
"express-rate-limit": "^6.3.0",
"express-session": "^1.15.6",
"jest": "^27.5.1",
"massive": "^6.10.2",
"morgan": "^1.10.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^7.2.8",
"react-test-renderer": "^18.0.0",
"react-toastify": "^8.2.0",
"redux": "^4.0.1",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1"
},
"devDependencies": {
"@babel/preset-react": "^7.16.7",
"@testing-library/react": "^13.0.0",
"babel-loader": "^8.2.4",
"babel-preset-react-app": "^10.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"identity-obj-proxy": "^3.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2"
},
"babel": {
"presets": [
"react-app"
]
}
}