-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.1 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
{
"name": "artaufeminin",
"description": "A podcast landing page",
"author": "David Leuliette <[email protected]>",
"scripts": {
"start": "gatsby develop",
"develop": "gatsby develop",
"build": "gatsby build",
"prettier": "prettier --write src/**/*.{jsx,ts,tsx}",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src/ --fix && yarn prettier",
"serve": "gatsby serve",
"cache:clear": "rm -rf node_modules && yarn && gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^3.3.1",
"gatsby": "^5.12.4",
"gatsby-plugin-canonical-urls": "^5.12.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-plugin-sitemap": "^6.12.0",
"gatsby-plugin-typescript": "^5.12.0",
"gatsby-source-anchor": "^0.5.1",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-source-prismic": "6.0.1",
"gatsby-transformer-sharp": "^5.12.0",
"git-cz": "^4.9.0",
"postcss": "^8.4.35",
"prismic-reactjs": "^1.3.4",
"react": "^18.2.0",
"react-aria": "^3.32.1",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-stately": "^3.30.1",
"tailwindcss": "^3.3.3",
"typeface-merriweather": "1.1.13"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-styling": "^1.3.7",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.14.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss-color-function": "^4.1.0",
"postcss-custom-properties": "^13.3.5",
"postcss-easy-import": "^4.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.4",
"storybook": "^7.6.17",
"typescript": "^5.2.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flexbox/artaufeminin.git"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "prettier --write"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}