-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "grepit-backend",
"type": "module",
"version": "1.0.0",
"description": "A Rapid-Fire / Trivia website to test your Bash, HTML, and JS skills (and more!) \"Grep\" from your knowledge and score more to be on top of a leaderboard!",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon app.js",
"start:babel": "babel-node src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.6.5",
"randomstring": "^1.3.0",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"eslint": "^8.55.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/opencodeiiita/ClipEverything-Backend.git"
},
"bugs": {
"url": "https://github.com/opencodeiiita/ClipEverything-Backend/issues"
}
}