forked from pmndrs/jotai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.17 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
{
"name": "jotai-website",
"version": "0.0.0",
"description": "👻 Primitive and flexible state management for React",
"homepage": "https://github.com/pmndrs/jotai",
"bugs": "https://github.com/pmndrs/jotai/issues",
"license": "MIT",
"author": "Sophia Michelle Andren <[email protected]> (https://candycode.com/)",
"sideEffects": [
"*.css"
],
"scripts": {
"dev": "gatsby develop -H 0.0.0.0 -p 9000",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deduplicate": "npx yarn-deduplicate yarn.lock",
"postdeduplicate": "yarn install",
"browserslist": "npx browserslist@latest --update-db"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"algoliasearch": "^4.13.1",
"classnames": "^2.3.2",
"gatsby": "^4.23.0",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-google-gtag": "^4.23.0",
"gatsby-plugin-mdx": "^3.17.0",
"gatsby-plugin-postcss": "^5.23.0",
"gatsby-plugin-sitemap": "^5.23.0",
"gatsby-source-filesystem": "^4.23.0",
"jotai": "^2.0.0",
"jotai-immer": "^0.2.0",
"just-kebab-case": "^4.1.1",
"just-throttle": "^4.1.1",
"prism-react-renderer": "^1.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch-hooks-web": "^6.33.0",
"react-remove-scroll": "^2.5.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.11",
"babel-preset-gatsby": "^2.23.0",
"postcss": "^8.4.16",
"postcss-import": "^15.0.0",
"postmark": "^3.0.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "^3.1.8"
},
"private": true,
"browserslist": [
">0.25%",
"not dead",
"not ie <=11",
"not ie_mob <=11",
"not op_mini all"
],
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"jsxSingleQuote": false,
"printWidth": 100,
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"tabs": false,
"trailingComma": "all",
"tailwindConfig": "./tailwind.config.js"
}
}