-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.13 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
{
"name": "ekitaab-store",
"version": "0.1.0",
"description": "The purpose of the website is to provide an online catalog for a small local library, where users can browse, read available books and manage their accounts",
"contributors": [
],
"repository": {
"url": "https://github.com/sjshank/eKitaab-Store"
},
"private": true,
"author": "Saurabh Shankariya",
"license": "GNU",
"homepage": "https://github.com/sjshank/eKitaab-Store",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --no-cache",
"lint-fix": "next lint --fix",
"analyze": "ANALYZE=true next build",
"snyk-test": "snyk test",
"prettier": "prettier --write .",
"prepare": "husky",
"lint-staged": "node .lintstagedrc.js",
"snyk-monitor": "snyk monitor",
"sitemap-dev": "cross-env NODE_ENV=development NODE_OPTIONS='--experimental-json-modules' node ./src/utils/generate-sitemap.mjs",
"sitemap-prod": "cross-env NODE_ENV=production NODE_OPTIONS='--experimental-json-modules' node ./src/utils/generate-sitemap.mjs"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.14",
"@mui/joy": "^5.0.0-beta.32",
"@mui/material-nextjs": "^5.15.11",
"@mui/x-date-pickers": "^7.0.0",
"dayjs": "^1.11.10",
"formik": "^2.4.5",
"next": "14.1.3",
"react": "^18",
"react-dom": "^18",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@next/bundle-analyzer": "^14.1.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"commitlint": "^19.2.1",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globby": "^14.0.1",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"snyk": "^1.1285.0",
"typescript": "^5"
},
"engines": {
"node": ">=18.17.0"
}
}