-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "pho3nixf1re.net",
"description": "Homepage for Matthew Turney",
"version": "2.0.12",
"private": true,
"author": "Matthew Turney <[email protected]>",
"license": "MIT",
"main": "n/a",
"type": "module",
"scripts": {
"deploy": "gh-pages -d out --tag v$npm_package_version --nojekyll",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:css": "stylelint '**/*.{css,scss}'",
"format": "npm run format:prettier && npm run format:eslint && npm run format:stylelint",
"format:prettier": "prettier --write .",
"format:eslint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format:stylelint": "stylelint '**/*.{css,scss}' --fix",
"changeset": "changeset"
},
"dependencies": {
"@mdi/js": "^7.3.67",
"@mdi/react": "^1.6.1",
"classcat": "^5.0.4",
"next": "^14.0.4",
"ramda": "^0.30.1",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^22.5.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"gh-pages": "^6.1.0",
"postcss-pxtorem": "^6.0.0",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"stylelint": "^16.0.2",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5"
}
}