-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.4 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.4 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "lottadoodles.uk",
"description": "Personal website of Charlotte Edwards",
"version": "1.24.24",
"author": "Ben Edwards",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/benedfit/lottadoodles.uk.git"
},
"homepage": "https://lottadoodles.uk",
"bugs": {
"url": "https://github.com/benedfit/lottadoodles.uk/issues"
},
"packageManager": "yarn@4.12.0",
"files": [
"public",
"src",
".env",
"jsconfig.json",
"next-sitemap.js",
"next.config.js",
"postcss.config.js",
"site.config.js"
],
"scripts": {
"prepare": "husky",
"clean": "rm -rf {.next,public/{robots.txt,sitemap*.xml}}",
"start": "next dev --webpack",
"build": "next build --webpack",
"postbuild": "next-sitemap",
"serve": "next start",
"test": "yarn lint",
"lint": "concurrently 'yarn:lint:*'",
"lint:js": "eslint --cache .",
"lint:css": "stylelint --cache --ignore-path .gitignore '**/*.?(s)css'",
"format": "concurrently 'yarn:format:*'",
"format:js": "yarn lint:js --fix",
"format:css": "yarn lint:css --fix"
},
"dependencies": {
"@newhighsco/chipset": "7.0.0",
"@newhighsco/next-plugin-svgr": "3.0.162",
"@newhighsco/press-start": "2.6.34",
"next": "16.1.6",
"next-compose-plugins": "2.2.1",
"next-sitemap": "4.2.3",
"next-videos": "1.5.0",
"postcss": "8.5.8",
"react": "19.2.4",
"react-dom": "19.2.4",
"sass": "1.97.3"
},
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@newhighsco/browserslist-config": "2.0.0",
"@newhighsco/commitlint-config": "1.1.50",
"@newhighsco/editor-config": "1.2.0",
"@newhighsco/eslint-config": "7.0.18",
"@newhighsco/postcss-config": "4.0.28",
"@newhighsco/prettier-config": "2.3.3",
"@newhighsco/release-config": "1.4.26",
"@newhighsco/stylelint-config": "4.0.28",
"@newhighsco/svgr-config": "1.0.0",
"concurrently": "9.2.1",
"eslint": "10.0.2",
"husky": "9.1.7",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"stylelint": "17.4.0"
},
"browserslist": [
"extends @newhighsco/browserslist-config"
],
"commitlint": {
"extends": [
"@newhighsco"
]
},
"prettier": "@newhighsco/prettier-config",
"release": {
"extends": "@newhighsco/release-config"
},
"stylelint": {
"extends": [
"@newhighsco/stylelint-config"
]
}
}