-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.37 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
{
"name": "holocron.io",
"license": "MIT",
"version": "0.1.0",
"author": "James Nash (https://github.com/NashJames/)",
"homepage": "https://github.com/NashJames/Holocron.io/",
"repository": "github:NashJames/Holocron.io",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "tsc && next build",
"clean": "rm -rf node_modules .next .swc next-env.d.ts logs ./src/types/generated",
"fmt": "pnpm fmt:eslint && pnpm fmt:stylelint && pnpm fmt:prettier",
"fmt:fix": "pnpm fmt:eslint --fix && pnpm fmt:stylelint --fix && pnpm fmt:prettier --write",
"fmt:eslint": "next lint",
"fmt:stylelint": "stylelint '**/*.{css,scss}' --config ./config/.stylelintrc.json",
"fmt:prettier": "prettier --config ./config/.prettierrc.json --ignore-path ./config/.prettierignore --check .",
"test": "playwright test --config ./config/playwright.config.ts",
"postbuild": "rm -rf .swc",
"posttest": "rm -rf logs"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@codemirror/view": "^6.21.3",
"@heroicons/react": "^2.0.18",
"@lezer/highlight": "^1.1.6",
"@nextui-org/react": "^2.1.13",
"@uiw/codemirror-themes": "^4.21.20",
"@uiw/react-codemirror": "^4.21.20",
"framer-motion": "^10.16.4",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-type-animation": "^3.2.0",
"sharp": "^0.32.6",
"swr": "^2.2.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@playwright/test": "^1.39.0",
"@types/node": "20.8.6",
"@types/react": "^18.2.28",
"@typescript-eslint/parser": "^6.7.5",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-playwright": "^0.16.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unicorn": "^48.0.1",
"postcss": "^8.4.31",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.3",
"sass": "^1.69.3",
"stylelint": "^15.10.3",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"browserslist": [
"defaults and supports es6-module"
]
}