-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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": "jin2gh.github.io",
"version": "0.1.0",
"description": "personal site",
"main": "index.js",
"repository": "https://github.com/jin2gh/jin2gh.github.io.git",
"author": "JIN <[email protected]>",
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"start": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-react": "^7.18.6",
"@types/node": "^18.16.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.37.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-cli": "^5.8.0",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-pnpm": "^1.2.10",
"gatsby-plugin-sass": "^6.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"sass": "^1.60.0",
"stylelint": "^15.3.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^31.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.6.0",
"typescript": "^5.0.4"
},
"dependencies": {
"classnames": "^2.3.2",
"gatsby": "^5.8.0",
"jsnes": "^1.2.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --config .eslintrc"
],
"*.{css,scss}": [
"stylelint --config .stylelintrc"
],
"*.{ts,tsx,js,json,html,yml,css,scss}": [
"prettier --write"
]
},
"engines": {
"node": ">=18",
"pnpm": ">=6"
}
}