-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.3 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
76
{
"name": "quizparty",
"version": "1.0.0",
"description": "Its a quiz party!",
"main": "index.js",
"scripts": {
"start": "nodemon server/index.js",
"build:client": "webpack --config webpack.config.js --mode production",
"build:client-dev": "webpack --config webpack.config.js --mode development --watch",
"seed": "npx sequelize db:drop && npx sequelize db:create && node server/db/seed.js && npx sequelize db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielalejandrojaen/QuizParty.git"
},
"author": "KittyScripters",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielalejandrojaen/QuizParty/issues"
},
"homepage": "https://github.com/danielalejandrojaen/QuizParty#readme",
"dependencies": {
"@popperjs/core": "^2.11.8",
"axios": "^1.6.0",
"babel": "^6.23.0",
"bootstrap": "^5.3.2",
"bootstrap-scss": "^5.3.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"he": "^1.2.0",
"html-webpack-plugin": "^5.5.3",
"jwt-decode": "^4.0.0",
"mysql": "^2.18.1",
"mysql2": "^3.6.3",
"node": "^20.9.0",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-contenteditable": "^3.3.7",
"react-dom": "^18.2.0",
"react-router-dom": "^6.18.0",
"sequelize": "^6.33.0",
"sequelize-cli": "^6.6.2"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}