-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
{
"name": "random.studio",
"private": true,
"description": "The Random Studio company website",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"dev": "next dev -- --hostname=0.0.0.0",
"build": "next build",
"export": "next build && next export",
"start": "next start -p 8080",
"launch-server": "npm install --dev && npm run start",
"launch": "pm2 start npm --name 'randomstudio' -- run launch-server && pm2 save",
"backup": "node ./cms/backups/backup-dato.mjs",
"lint": "tsc && eslint \"{src,netlify,cms}/**/*.{js,jsx,json,ts,tsx}\" --fix --cache --cache-location ~/.eslintcache/eslintcache"
},
"dependencies": {
"@ctrl/tinycolor": "3.6.0",
"@react-spring/web": "^9.7.3",
"@react-three/drei": "^9.99.7",
"@react-three/fiber": "^8.15.19",
"@react-three/postprocessing": "^2.16.2",
"@types/three": "^0.162.0",
"classnames": "^2.3.2",
"graphql-request": "5.1.0",
"hls.js": "1.4.10",
"next": "13.5.6",
"postprocessing": "^6.35.2",
"react": "^18.2.0",
"react-datocms": "4.0.9",
"react-markdown": "8.0.5",
"rehype-raw": "^6.1.1",
"swr": "2.2.1",
"three": "^0.162.0",
"three-stdlib": "^2.29.6",
"zustand": "^4.3.9"
},
"devDependencies": {
"@datocms/cma-client-node": "^1.3.5",
"@netlify/functions": "^1.6.0",
"@next/bundle-analyzer": "13.2.1",
"@next/eslint-plugin-next": "13.2.1",
"@react-three/eslint-plugin": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"datocms-client": "3.5.21",
"dotenv": "16.0.3",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"gray-matter": "4.0.3",
"mime-types": "2.1.35",
"node-fetch": "3.3.0",
"postcss": "^8.4.24",
"postcss-custom-media": "8.0.2",
"postcss-mixins": "9.0.4",
"postcss-nested": "6.0.1",
"postcss-preset-env": "9.0.0",
"prettier": "2.8.4",
"r3f-perf": "^7.2.1",
"sharp": "0.32.6",
"typescript": "^5.0.2"
},
"browserslist": "last 2 versions, iOS > 15",
"engines": {
"node": ">=18.16.1"
},
"repository": {
"type": "git",
"url": "https://github.com/RandomStudio/random-studio"
}
}