-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 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
{
"name": "genuary-7-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"npm run dev:css\"",
"build": "next build",
"start": "next start",
"lint": "eslint --format=pretty .",
"mrm": "mrm --preset=@albanbl/mrm-preset",
"dev:css": "unocss -c uno.config.ts -o styles/uno.css -w {pages,components}/**/**/* {pages,components}/**/* {pages,components}/* layouts/*",
"build:css": "unocss -c uno.config.ts -o styles/uno.css {pages,components}/**/**/* {pages,components}/**/* {pages,components}/* layouts/*",
"lint:fix": "eslint --fix --format=pretty .",
"docker:build": "docker build -t genuary-7 .",
"docker:run": "docker run -p 3000:3000 genuary-7",
"format": "prettier --write ."
},
"dependencies": {
"@react-three/drei": "^9.51.15",
"@react-three/fiber": "^8.10.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/three": "^0.148.0",
"axios": "^1.2.2",
"eslint-config-next": "13.1.1",
"framer-motion": "^8.2.4",
"next": "13.1.1",
"react": "18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "18.2.0",
"swr": "^2.0.0",
"three": "^0.148.0",
"tinykeys": "^1.4.0",
"typescript": "4.9.4"
},
"devDependencies": {
"@albanbl/eslint-config": "^2.0.2",
"@albanbl/mrm-preset": "^1.0.2",
"@iconify-json/carbon": "^1.1.13",
"@unocss/cli": "^0.48.2",
"@unocss/preset-icons": "^0.48.2",
"concurrently": "^7.6.0",
"eslint": "8.31.0",
"mrm": "^4.1.13",
"prettier": "^2.8.2",
"unocss": "^0.48.2"
},
"eslintConfig": {
"extends": [
"@albanbl",
"eslint-config"
]
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
}
}