-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 953 Bytes
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
{
"name": "arcgrid-logo-guides",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run dev:cf",
"dev:cf": "npm run dev:css & npx wrangler pages dev public",
"dev:css": "npx @tailwindcss/cli -i ./src/styles/input.css -o ./public/style.css --watch",
"build:css": "npx @tailwindcss/cli -i ./src/styles/input.css -o ./public/style.css --minify",
"build": "npm run build:css",
"build:figma": "node figma-plugin/build.mjs",
"lint": "node scripts/lint.mjs",
"test": "node tests/run-tests.mjs",
"verify:mock": "node scripts/verify-mock.mjs"
},
"dependencies": {
"dotenv": "^17.3.1",
"hono": "^4.12.3",
"svgo": "^4.0.0"
},
"devDependencies": {
"@hono/node-server": "^1.19.9",
"@tailwindcss/cli": "^4.2.1",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.0"
}
}