-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "typesth",
"version": "2.0.0",
"private": true,
"description": "type sth fun everyday",
"license": "ISC",
"main": "server.js",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --env production",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "postcss app/styles/app.css --dir public/styles",
"start": "remix-serve build",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"hook": "npm run lint",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"format:write": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@remix-run/node": "^1.7.4",
"@remix-run/react": "^1.7.4",
"@remix-run/vercel": "^1.7.4",
"@vercel/node": "^2.5.10",
"animejs": "^3.2.1",
"clsx": "^1.2.1",
"daisyui": "^2.40.1",
"hotkeys-js": "^3.10.0",
"isbot": "^3.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"theme-change": "^2.2.0",
"zod": "^3.19.1",
"zustand": "^4.1.4"
},
"devDependencies": {
"@remix-run/dev": "^1.7.4",
"@remix-run/eslint-config": "^1.7.4",
"@remix-run/serve": "^1.7.4",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/animejs": "^3.1.6",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.0.1",
"autoprefixer": "^10.4.13",
"c8": "^7.11.3",
"cssnano": "^5.1.14",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"happy-dom": "^7.5.12",
"husky": "^8.0.1",
"jest": "^29.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"prettier": "^2.7.1",
"stylelint": "^14.14.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"tailwindcss": "^3.1.6",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"vite": "^3.0.9",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.25.1"
},
"engines": {
"node": ">=14"
},
"directories": {
"test": "test"
},
"keywords": [
"typesth",
"typing-tool"
],
"author": "bao",
"repository": {
"type": "git",
"url": "https://github.com/thebaodev/typesth.git"
}
}