-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "docs.somod.dev",
"version": "1.1.5",
"description": "somod tool documentation",
"module": "./dist/index.js",
"typings": "./dist/index.d.js",
"files": [
"dist"
],
"scripts": {
"clean": "npx rimraf dist",
"prettier": "npx prettier --check --ignore-unknown ./**/*",
"eslint": "npx eslint ./ --no-error-on-unmatched-pattern",
"tsc": "npx tsc --project tsconfig.build.json",
"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+ssh://[email protected]/somod-dev/docs.somod.dev.git"
},
"keywords": [
"[somod]"
],
"author": "Lokesh G C <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/somod-dev/docs.somod.dev/issues"
},
"homepage": "https://github.com/somod-dev/docs.somod.dev#readme",
"devDependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.11.12",
"@mui/x-date-pickers": "^5.0.0",
"@next/bundle-analyzer": "^13.2.4",
"@types/js-yaml": "^4.0.5",
"@types/json-schema": "^7.0.11",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.21",
"@types/prettier": "^2.6.0",
"@types/react": "^17.0.2 || ^18.0.0",
"@types/react-dom": "^17.0.2 || ^18.0.0",
"@types/react-syntax-highlighter": "^13.5.2",
"eslint-config-sodaru": "^1.0.1",
"next": "^12.1.0",
"next-sitemap": "^4.0.6",
"prettier-config-sodaru": "^1.0.0",
"react": "^18.2.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": [
"eslint-config-sodaru"
]
},
"prettier": "prettier-config-sodaru",
"dependencies": {
"@solib/media-kit": "^1.0.0",
"mui-extended": "^1.1.1",
"somod-docs": "^1.17.2"
}
}