-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1000 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1000 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
32
33
34
35
36
37
38
39
40
41
{
"name": "tasks-master",
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"version": "0.0.1",
"description": "tasks master",
"homepage": "https://github.com/thisfeeling/tasks-master#readme",
"bugs": {
"url": "https://github.com/thisfeeling/tasks-master/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thisfeeling/tasks-master.git"
},
"author": "thisfeeling <murksopps@gmail>",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"test": "vitest"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"autoprefixer": "^10.4.22",
"daisyui": "^5.5.14",
"eslint": "^9.39.1",
"prettier": "^3.7.4",
"vite": "^7.2.7",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}