-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "binary-farm-website",
"version": "0.0.1",
"description": "binaryfarm public website",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/binaryfarm/website.git"
},
"license": "Apache 2.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"framer-motion": "^11.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"vite": "^5.0.12"
},
"bugs": {
"url": "https://github.com/binaryfarm/website/issues"
},
"homepage": "https://www.binaryfarm.io",
"files": [
"./dist/*",
"./assets/*"
],
"scripts": {
"build": "tsc && vite build --emptyOutDir --outDir=./dist",
"clean": "rm -rf ./dist && rm -rf ./node_modules",
"serve": "vite preview --port=8080",
"dev": "vite . --port=8080",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"devDependencies": {
"@types/eslint": "^8.0.0",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.33",
"pretty": "^2.0.0",
"tailwindcss": "^3.4.1"
}
}