-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "tinker-sld",
"version": "0.0.584",
"private": true,
"license": "MIT",
"type": "module",
"devDependencies": {
"autoprefixer": "10.4.20",
"concurrently": "9.1.2",
"postcss": "8.5.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"proto-tailwindcss-clrs": "0.0.395",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-plugin-solid": "2.11.0"
},
"dependencies": {
"between.js": "0.1.2-fix.2",
"solid-js": "1.9.4"
},
"scripts": {
"dev": "concurrently \"yarn:twx --watch\" \"yarn:start\"",
"twx": "sh ./.generate",
"start": "vite",
"build": "yarn twx; yarn format; vite build",
"serve": "vite preview",
"spell": "cspell 'src/**/*.{ts,tsx,html,css,md}'",
"cc": "prettier --check './src/**/*.{ts,tsx,html,css,pcss,md}'",
"format": "prettier --write './src/**/*.{ts,tsx,html,css,pcss,md}'",
"predeploy": "yarn version --patch; yarn build",
"deploy": "cd dist; ln -s ../.vercel; vc --prod",
"open": "open https://tinker-sld.vercel.app"
},
"browserslist": [
"Chrome 74",
"Firefox 63",
"Safari 11",
"Edge 17",
"Node 10"
]
}