create-lik-app 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +0 -0
- package/dist/index.mjs +119 -0
- package/index.js +3 -0
- package/package.json +39 -0
- package/templates/template-react/.husky/commit-msg +6 -0
- package/templates/template-react/.husky/lintstagedrc.cjs +8 -0
- package/templates/template-react/.husky/pre-commit +10 -0
- package/templates/template-react/.prettierignore +13 -0
- package/templates/template-react/.vscode/extensions.json +5 -0
- package/templates/template-react/README.md +24 -0
- package/templates/template-react/_gitignore +24 -0
- package/templates/template-react/commitlint.config.mjs +28 -0
- package/templates/template-react/config/uno/rules.ts +127 -0
- package/templates/template-react/eslint.config.mjs +44 -0
- package/templates/template-react/index.html +13 -0
- package/templates/template-react/package-lock.json +6460 -0
- package/templates/template-react/package.json +49 -0
- package/templates/template-react/pnpm-lock.yaml +4403 -0
- package/templates/template-react/prettier.config.mjs +11 -0
- package/templates/template-react/public/lic.svg +1263 -0
- package/templates/template-react/public/react.svg +1 -0
- package/templates/template-react/public/vite.svg +1 -0
- package/templates/template-react/src/App.tsx +18 -0
- package/templates/template-react/src/assets/react.svg +1 -0
- package/templates/template-react/src/components/Lic/index.tsx +12 -0
- package/templates/template-react/src/libs/gsap/index.ts +6 -0
- package/templates/template-react/src/main.tsx +12 -0
- package/templates/template-react/src/router/loaders.ts +10 -0
- package/templates/template-react/src/router/routes.tsx +36 -0
- package/templates/template-react/src/store/index.ts +2 -0
- package/templates/template-react/src/store/module/counter.ts +20 -0
- package/templates/template-react/src/store/module/favorite.ts +18 -0
- package/templates/template-react/src/styles/animation.css +8 -0
- package/templates/template-react/src/styles/mian.css +10 -0
- package/templates/template-react/src/styles/variable.css +21 -0
- package/templates/template-react/src/views/About/index.tsx +7 -0
- package/templates/template-react/src/views/Home/components/React/index.tsx +17 -0
- package/templates/template-react/src/views/Home/components/Vite/index.tsx +20 -0
- package/templates/template-react/src/views/Home/index.tsx +59 -0
- package/templates/template-react/src/views/Layout/index.tsx +22 -0
- package/templates/template-react/src/vite-env.d.ts +1 -0
- package/templates/template-react/tsconfig.app.json +36 -0
- package/templates/template-react/tsconfig.json +7 -0
- package/templates/template-react/tsconfig.node.json +24 -0
- package/templates/template-react/uno.config.ts +40 -0
- package/templates/template-react/vite.config.ts +28 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
{
|
2
|
+
"name": "new-lic-blog",
|
3
|
+
"private": true,
|
4
|
+
"version": "0.0.0",
|
5
|
+
"type": "module",
|
6
|
+
"scripts": {
|
7
|
+
"dev": "vite",
|
8
|
+
"build": "tsc -b && vite build",
|
9
|
+
"lint": "eslint .",
|
10
|
+
"preview": "vite preview",
|
11
|
+
"preinstall": "npx only-allow pnpm",
|
12
|
+
"prepare": "husky"
|
13
|
+
},
|
14
|
+
"dependencies": {
|
15
|
+
"@gsap/react": "^2.1.1",
|
16
|
+
"@unocss/reset": "^0.64.1",
|
17
|
+
"gsap": "^3.12.5",
|
18
|
+
"mobx": "^6.13.5",
|
19
|
+
"mobx-react-lite": "^4.0.7",
|
20
|
+
"react": "^18.3.1",
|
21
|
+
"react-dom": "^18.3.1",
|
22
|
+
"react-router": "^6.28.0",
|
23
|
+
"react-router-dom": "^6.28.0"
|
24
|
+
},
|
25
|
+
"devDependencies": {
|
26
|
+
"@babel/plugin-proposal-decorators": "^7.25.9",
|
27
|
+
"@commitlint/cli": "^19.6.0",
|
28
|
+
"@commitlint/config-conventional": "^19.6.0",
|
29
|
+
"@eslint/js": "^9.13.0",
|
30
|
+
"@types/node": "^22.9.1",
|
31
|
+
"@types/react": "^18.3.12",
|
32
|
+
"@types/react-dom": "^18.3.1",
|
33
|
+
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
34
|
+
"@vitejs/plugin-react": "^4.3.3",
|
35
|
+
"eslint": "^9.14.0",
|
36
|
+
"eslint-config-prettier": "^9.1.0",
|
37
|
+
"eslint-plugin-prettier": "^5.2.1",
|
38
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
39
|
+
"eslint-plugin-react-refresh": "^0.4.14",
|
40
|
+
"globals": "^15.11.0",
|
41
|
+
"husky": "^9.1.7",
|
42
|
+
"lint-staged": "^15.2.10",
|
43
|
+
"only-allow": "^1.2.1",
|
44
|
+
"typescript": "~5.6.2",
|
45
|
+
"typescript-eslint": "^8.13.0",
|
46
|
+
"unocss": "^0.64.0",
|
47
|
+
"vite": "^5.4.10"
|
48
|
+
}
|
49
|
+
}
|