This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
generated from newhighsco/press-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@newhighsco/website",
"description": "New High Score website",
"version": "1.17.173",
"author": "New High Score",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/newhighsco/website.git"
},
"homepage": "https://github.com/newhighsco/website#readme",
"bugs": {
"url": "https://github.com/newhighsco/website/issues"
},
"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",
"build": "next build",
"postbuild": "next-sitemap",
"serve": "next start",
"test": "yarn lint",
"lint": "concurrently yarn:lint:*",
"lint:js": "eslint --cache --ignore-path .gitignore .",
"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": "6.16.0",
"@newhighsco/next-plugin-svgr": "3.0.125",
"@newhighsco/press-start": "2.2.15",
"next": "14.1.4",
"next-compose-plugins": "2.2.1",
"next-seo": "6.5.0",
"next-sitemap": "4.2.3",
"postcss": "8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "1.74.1"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@newhighsco/browserslist-config": "1.1.0",
"@newhighsco/commitlint-config": "1.1.38",
"@newhighsco/editor-config": "1.2.0",
"@newhighsco/eslint-config": "4.0.159",
"@newhighsco/postcss-config": "3.5.226",
"@newhighsco/prettier-config": "2.1.22",
"@newhighsco/release-config": "1.3.71",
"@newhighsco/stylelint-config": "3.1.79",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"husky": "9.0.11",
"prettier": "3.2.5",
"semantic-release": "23.0.8",
"stylelint": "16.3.1"
},
"browserslist": [
"extends @newhighsco/browserslist-config"
],
"commitlint": {
"extends": [
"@newhighsco"
]
},
"eslintConfig": {
"extends": [
"@newhighsco/eslint-config"
]
},
"prettier": "@newhighsco/prettier-config",
"release": {
"extends": "@newhighsco/release-config",
"branches": [
"main"
]
},
"renovate": {
"extends": [
"local>newhighsco/.github:renovate-config"
]
},
"stylelint": {
"extends": [
"@newhighsco/stylelint-config"
]
}
}