-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 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
{
"name": "react-figma-starter",
"version": "1.0.0",
"type": "module",
"author": "Antonija Pek <hi@apek.me>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/post-build.js",
"watch": "concurrently \"vite build --watch\" \"npm run watch:code\" \"npm run watch:rebuild\"",
"watch:rebuild": "chokidar dist/index.html -c 'node scripts/post-build.js'",
"watch:code": "chokidar figma/code.js -c 'node scripts/post-build.js'",
"preview": "vite preview",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx --fix",
"reset": "node reset.js"
},
"dependencies": {
"chroma-js": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@tailwindcss/postcss": "^4.1.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"chalk": "^5.6.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"shelljs": "^0.10.0",
"tailwindcss": "^4.1.12",
"vite": "^4.5.5",
"vite-plugin-singlefile": "^0.13.5"
}
}