-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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
69
70
71
72
73
{
"name": "@noop-inc/documentation",
"version": "0.0.0-automated",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/noop-inc/documentation.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/noop-inc/documentation/issues"
},
"homepage": "https://github.com/noop-inc/documentation#readme",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "lib/index.js",
"files": [
"dist/*",
"lib/*",
"src/*"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"common-eslint": "eslint . --ext .js,.cjs,.mjs --cache --cache-location node_modules/.cache/.eslintcache --ignore-path .gitignore",
"common-prettier": "prettier \"**/*.{htm,html,json,md,markdown,yml,yaml}\" --cache --ignore-path .gitignore",
"common-sequential": "concurrently --raw --max-processes 1",
"fix": "npm run common-sequential -- npm:fix-*",
"fix-eslint": "npm run common-eslint -- --fix",
"fix-prettier": "npm run common-prettier -- --write",
"lint": "npm run common-sequential -- npm:lint-*",
"lint-eslint": "npm run common-eslint",
"lint-prettier": "npm run common-prettier -- --check"
},
"dependencies": {
"@astrojs/mdx": "^2.0.0",
"@astrojs/tailwind": "^5.0.3",
"@pagefind/default-ui": "^1.0.4",
"astro": "^4.0.2",
"pagefind": "^1.0.4",
"sirv": "^2.0.3",
"tailwindcss": "^3.3.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"prettier": "^2.8.8",
"typescript": "^5.3.2"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"standard"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}