-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.47 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": "story-react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"svgr": "svgr -d src/components/Icons/ src/assets/icons",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:scripts": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:scripts:fix": "pnpm run lint:scripts --fix",
"lint:styles": "stylelint ./src/**/*.css",
"lint": "pnpm run lint:scripts:fix & pnpm run lint:styles",
"format:scripts": "prettier src --check",
"format:scripts:fix": "pnpm run format:scripts --write",
"format:styles": "pnpm run lint:styles --fix",
"format": "pnpm run format:scripts:fix & pnpm run format:styles",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-icons": "^1.3.0",
"@react-three/drei": "^9.74.6",
"@react-three/fiber": "^8.13.0",
"@stitches/core": "^1.2.8",
"@stitches/react": "^1.2.8",
"@studio-freight/lenis": "^1.0.14",
"@types/three": "^0.152.1",
"classnames": "^2.3.2",
"gsap": "^3.11.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-animated-cursor": "^2.7.0",
"react-dom": "^18.2.0",
"react-particles": "^2.9.3",
"three": "^0.153.0",
"tsparticles": "^2.9.3",
"typed.js": "^2.0.16",
"uuid": "^9.0.0",
"vite-plugin-svgr": "^3.2.0"
},
"devDependencies": {
"@svgr/cli": "^8.0.1",
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"eslint": "^8.38.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-tailwindcss": "^3.12.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"postcss-extend": "^1.0.5",
"postcss-for": "^2.1.1",
"postcss-import": "^15.1.0",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^8.4.1",
"postcss-scss": "^4.0.6",
"postcss-simple-vars": "^7.0.1",
"prettier": "^2.8.8",
"stylelint": "^15.6.2",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"stylelint-order": "^6.0.3",
"tailwindcss": "^3.3.2",
"vite": "^4.3.2"
}
}