-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "reimagined-carnival",
"version": "1.0.0",
"description": "Bookstore application using nodejs and express ",
"homepage": "https://github.com/tecnodeveloper/reimagined-carnival#readme",
"bugs": {
"url": "https://github.com/tecnodeveloper/reimagined-carnival/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tecnodeveloper/reimagined-carnival.git"
},
"license": "ISC",
"author": "Zain ali",
"type": "module",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint . --ext .js,.ts,.jsx,.tsx",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"prisma:migrate": "npx prisma migrate dev",
"prisma:generate": "npx prisma generate"
},
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.6.0",
"@prisma/client": "^7.6.0",
"docker": "^1.0.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"nodemon": "^3.1.14",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prisma": "^7.6.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}