-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "css-components-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate:css": "npx css-components --css \"src/components/**/*.css\" --output styles.ts",
"depcheck": "npx npm-check --update",
"lint": "npm-run-all check-types lint:js",
"lint:js": "next lint",
"fix": "next lint --fix",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@phantomstudios/css-components": "^0.4.0",
"@phntms/react-gtm": "^0.1.1",
"@phntms/react-share": "^1.0.1",
"@react-spring/web": "^9.7.1",
"@react-three/drei": "^9.121.4",
"@react-three/fiber": "^8.12.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/three": "^0.149.0",
"eslint": "^8.28.0",
"eslint-config-next": "^13.2.1",
"glob": "^8.0.3",
"gray-matter": "^4.0.3",
"mdx-bundler": "^9.0.1",
"next": "^14.2.23",
"next-sitemap": "^3.1.55",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-syntax-highlighter": "^15.5.0",
"three": "^0.172.0",
"typescript": "4.9.3"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/react-syntax-highlighter": "^15.5.5",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0"
}
}