-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.38 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.38 KB
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
{
"name": "concero_website",
"private": true,
"version": "0.0.0",
"author": {
"name": "Andrej Babamov",
"email": "andrej@concero.io"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint:ts": "eslint .",
"lint:ts:fix": "eslint . --fix",
"lint:css": "npx stylelint \"src/**/*.{css,pcss}\"",
"lint:css:fix": "npx stylelint \"src/**/*.{css,pcss}\" --fix",
"lint": "npm run lint:ts && npm run lint:css",
"lint:fix": "npm run lint:ts:fix && npm run lint:css:fix",
"format:check": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"sb": "storybook dev -p 6006 --no-open",
"sb:build": "storybook build"
},
"dependencies": {
"@concero/ui-kit": "^0.2.21",
"@formspree/react": "^3.0.0",
"framer-motion": "^12.23.24",
"lottie-react": "^2.4.1",
"posthog-js": "^1.232.0",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"react": "^18.0.0",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^7.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@eslint/js": "^9.19.0",
"@storybook/addon-essentials": "^8.6.7",
"@storybook/addon-interactions": "^8.6.7",
"@storybook/addon-onboarding": "^8.6.7",
"@storybook/blocks": "^8.6.7",
"@storybook/react": "^8.6.7",
"@storybook/react-vite": "^8.6.7",
"@storybook/test": "^8.6.7",
"@types/css-modules": "^1.0.5",
"@types/node": "^22.13.1",
"@types/react": "18.2",
"@types/react-dom": "18.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-storybook": "^0.11.6",
"globals": "^15.14.0",
"path": "^0.12.7",
"postcss": "^8.5.1",
"postcss-custom-media": "^11.0.6",
"postcss-modules": "^6.0.1",
"precss": "^4.0.0",
"prettier": "^3.5.0",
"storybook": "^8.6.7",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^8.0.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^6.3.5",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-static-copy": "^2.3.0",
"vite-plugin-stylelint": "^6.0.0",
"vite-tsconfig-paths": "^5.1.4"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}