-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.1 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
{
"name": "martijnhols.nl",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "yarn start",
"build": "next build",
"start": "next dev",
"lint": "yarn --silent lint:code && yarn --silent lint:rest",
"lint:code": "yarn --silent lint:code:specific '**/*.{js,jsx,ts,tsx}'",
"lint:code:specific": "CODE_STYLE=true eslint --format stylish --max-warnings 0",
"lint:code:specific:fix": "yarn lint:code:specific --fix",
"lint:rest": "yarn --silent lint:rest:specific '**/*.{json,md,css,graphql,yml}'",
"lint:rest:specific": "prettier --check",
"lint:rest:specific:fix": "prettier --write",
"lint:fix": "yarn --silent lint:code --fix && prettier --write '**/*.{json,md,css,graphql,yml}'",
"fix-all": "yarn && yarn lint:fix && yarn typecheck && yarn test",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@lhci/cli": "^0.13.0",
"@next/bundle-analyzer": "^15.1.2",
"@tippyjs/react": "^4.2.6",
"concurrently": "^8.2.2",
"next": "^15.1.2",
"prism-react-renderer": "^2.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-group": "^4.4.5",
"rss": "^1.2.2",
"sanitize.css": "^13.0.0",
"satori": "^0.10.13",
"sharp": "^0.33.5",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@martijnhols/eslint-config": "^6.0.0",
"@next/eslint-plugin-next": "^15.1.2",
"@slicemachine/adapter-next": "^0.3.38",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.12.3",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-transition-group": "^4.4.10",
"@types/rss": "^0.0.32",
"eslint": "^8.13.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^3.2.5",
"typescript": "^5.7.2"
},
"lint-staged": {
"!(*\\.generated)\\.{ts,tsx,js,jsx}": [
"yarn --silent lint:code:specific:fix"
],
"*.{json,md,css,scss,graphql,yml}": [
"yarn --silent lint:rest:specific:fix"
]
}
}