-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 3.8 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"private": true,
"name": "diary",
"version": "3.0.0-dev",
"description": "MakeNowJust's diary system",
"license": "MIT",
"author": "TSUYUSATO Kitsune <make.just.on@gmail.com>",
"repository": "git@github.com:MakeNowJust/diary.git",
"scripts": {
"build": "node scripts/bundle.js && gatsby build",
"build-storybook": "build-storybook",
"dev": "node scripts/bundle.js && gatsby develop --open",
"format": "prettier-package-json 'package.json' 'plugins/*/package.json' --write && prettier --ignore-path .gitignore '**/*.{js,json,md,mjs,scss,yml}' '!src/posts/**' --write && eslint --ignore-path .gitignore '**/*.{js,mjs}' --fix && stylelint --ignore-path .gitignore '**/*.scss' --fix",
"lint": "prettier-package-json 'package.json' 'plugins/*/package.json' --list-different && prettier --ignore-path .gitignore '**/*.{js,json,md,mjs,scss,yml}' '!src/posts/**' --list-different && eslint --ignore-path .gitignore '**/*.{js,mjs}' && stylelint --ignore-path .gitignore '**/*.scss'",
"storybook": "node scripts/bundle.js && start-storybook -p 6006",
"test": "node scripts/bundle.js && jest"
},
"resolutions": {
"react-test-renderer": "18.3.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"katex": "0.16.21",
"modern-normalize": "3.0.1",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-instantsearch-dom": "6.40.4",
"typeface-nova-mono": "1.1.13",
"typeface-nova-square": "1.1.13",
"typeface-raleway": "1.1.13"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/eslint-parser": "7.26.5",
"@storybook/addon-actions": "7.4.6",
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addon-storyshots": "7.4.6",
"@storybook/builder-webpack5": "7.4.6",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "7.4.6",
"algoliasearch": "5.20.0",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"babel-plugin-react-docgen": "4.2.1",
"babel-plugin-require-context-hook": "1.0.0",
"babel-preset-gatsby": "3.14.0",
"css-loader": "7.1.2",
"esbuild": "0.24.2",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-config-xo-react": "0.27.0",
"eslint-config-xo-space": "0.35.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-storybook": "0.11.2",
"eslint-plugin-unicorn": "51.0.1",
"gatsby": "5.14.1",
"gatsby-plugin-algolia-search": "0.5.7",
"gatsby-plugin-cname": "1.0.0",
"gatsby-plugin-manifest": "5.14.0",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"gatsby-plugin-sass": "6.14.0",
"gatsby-plugin-sitemap": "6.14.0",
"gatsby-remark-katex": "7.14.0",
"gatsby-source-filesystem": "5.14.0",
"gatsby-transformer-remark": "6.14.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lowlight": "2.9.0",
"prettier": "3.4.2",
"prettier-package-json": "2.8.0",
"react-test-renderer": "18.3.1",
"regenerator-runtime": "0.14.1",
"remark": "14.0.3",
"remark-breaks": "4.0.0",
"sass": "1.83.4",
"sass-loader": "16.0.4",
"strip-markdown": "6.0.0",
"style-loader": "4.0.0",
"stylelint": "16.13.2",
"stylelint-config-css-modules": "4.4.0",
"stylelint-config-recommended": "15.0.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-scss": "6.10.1",
"typescript": "5.7.3",
"unist-util-is": "6.0.0",
"unist-util-visit": "5.0.0",
"webpack": "5.97.1"
}
}