-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
{
"name": "pencil-web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev --hostname 0.0.0.0",
"build": "next build",
"export": "next export",
"start": "next start",
"eslint": "eslint --ignore-path .gitignore \"./**/*.{js,jsx,ts,tsx}\"",
"eslint:fix": "eslint --ignore-path .gitignore \"./**/*.{js,jsx,ts,tsx}\" --fix",
"stylelint": "stylelint --ignore-path .gitignore \"./**/*.{css,scss}\"",
"stylelint:fix": "stylelint --ignore-path .gitignore \"./**/*.{css,scss}\" --fix",
"format": "prettier --write \"./**/*.ts\" \"./**/*.tsx\""
},
"dependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.10",
"destyle.css": "^4.0.1",
"highlight.js": "^11.9.0",
"image-size": "^1.1.1",
"microcms-js-sdk": "^2.7.0",
"next": "14.1.1",
"next-mdx-remote": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.8.0",
"rehype-slug": "^6.0.0",
"sass-loader": "^14.1.1",
"sharp": "^0.32.6",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "^6.1.0",
"typescript": "^5.3.3"
},
"browser": {
"fs": false
},
"resolutions": {
"string-width": "4.2.3"
}
}