-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.83 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "scratch-project",
"version": "1.0.0",
"description": "Meal Planner",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"dev": "NODE_ENV=development concurrently \"nodemon --watch server ./server/server.js\" \"webpack serve --open\"",
"build": "NODE_ENV=production webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/KABOT-Project/Scratch-Project.git"
},
"author": "KABOT",
"license": "ISC",
"bugs": {
"url": "https://github.com/KABOT-Project/Scratch-Project/issues"
},
"homepage": "https://github.com/KABOT-Project/Scratch-Project#readme",
"dependencies": {
"@authentication/github": "^0.2.0",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.13.7",
"@react-oauth/google": "^0.11.0",
"axios": "^1.4.0",
"babel-loader": "^9.1.2",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.3.0",
"chai": "^3.5.0",
"connect-mongo": "^5.0.0",
"connect-pg-simple": "^9.0.0",
"cookie-parser": "^1.4.1",
"cors": "^2.8.5",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"express": "^4.13.4",
"express-session": "^1.17.3",
"gapi-script": "^1.2.0",
"google-auth-library": "^8.9.0",
"html-webpack-plugin": "^5.5.3",
"jwt-decode": "^3.1.2",
"mocha": "^10.2.0",
"mongoose": "^6.11.2",
"pg": "^8.11.1",
"pg-promise": "^11.5.0",
"react": "^18.2.0",
"react-canvas-confetti": "^1.4.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.0",
"react-use": "^17.4.0",
"redis": "^2.4.2",
"sinon": "^1.17.3",
"style-loader": "^3.3.3",
"supertest": "^6.3.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"ajv": "^8.12.0",
"babel-loader": "^8.2.3",
"concurrently": "^5.0.0",
"cross-env": "^6.0.3",
"css-loader": "^6.5.1",
"eslint": "^7.17.0",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^3.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0",
"webpack-hot-middleware": "^2.24.3"
},
"nodemonConfig": {
"ignore": [
"build",
"client/"
]
}
}