-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.99 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
{
"name": "rinear-raft",
"version": "1.0.4",
"private": true,
"scripts": {
"dev": "next dev --hostname 0.0.0.0",
"build": "next build",
"export": "next export",
"start": "next start",
"eslint": "eslint --ignore-path .gitignore \"src/**/*.{js,jsx,ts,tsx}\"",
"eslint:fix": "eslint --ignore-path .gitignore \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"stylelint": "stylelint --ignore-path .gitignore \"src/**/*.{css,scss}\"",
"stylelint:fix": "stylelint --ignore-path .gitignore \"src/**/*.{css,scss}\" --fix",
"format": "prettier --write \"./**/*.ts\" \"./**/*.tsx\""
},
"dependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"dayjs": "^1.11.3",
"destyle.css": "^4.0.0",
"image-size": "^1.0.2",
"microcms-js-sdk": "^2.3.3",
"next": "13.0.3",
"next-mdx-remote": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.3.3",
"rehype-slug": "^5.1.0",
"sass-loader": "^13.2.0",
"sharp": "^0.31.2",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"autoprefixer": "^10.4.7",
"eslint": "^8.27.0",
"eslint-config-next": "^13.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.19",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"stylelint": "^14.14.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.2.0",
"typescript": "^4.7.4"
},
"browser": {
"fs": false
}
}