-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
55
56
57
58
59
60
{
"name": "somod.dev",
"version": "1.0.4",
"description": "Website for somod.dev",
"main": "index.js",
"scripts": {
"clean": "npx rimraf dist",
"prettier": "npx prettier --check --ignore-unknown ./**/*",
"eslint": "npx eslint ./ --no-error-on-unmatched-pattern",
"prebuild": "npm run prettier && npm run eslint && npm run clean",
"build": "next build",
"postbuild": "npx next-sitemap",
"pretest": "npm run build",
"test": "echo 'no tests'",
"prepack": "npm run test",
"postversion": "git push --follow-tags",
"dev": "next dev",
"start": "next start",
"export": "npx next export -o static-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/somod-dev/somod.dev.git"
},
"keywords": [
"somod"
],
"author": "Raghavendra K R <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/somod-dev/somod.dev/issues"
},
"homepage": "https://github.com/somod-dev/somod.dev#readme",
"devDependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.13.1",
"@next/bundle-analyzer": "^13.4.2",
"@types/node": "20.1.7",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"eslint-config-sodaru": "^1.0.1",
"mui-extended": "^1.1.1",
"next": "^12.0.0",
"next-sitemap": "^4.0.9",
"prettier-config-sodaru": "^1.0.0",
"react": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"eslintConfig": {
"extends": [
"eslint-config-sodaru"
]
},
"prettier": "prettier-config-sodaru",
"dependencies": {
"@solib/media-kit": "^1.0.0"
}
}