-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) Β· 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) Β· 1.8 KB
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
{
"name": "glowmoji",
"description": "Animation effect built with React + TypeScript and Framer Motion.",
"license": "MIT",
"version": "0.0.0",
"homepage": "https://emayom.github.io/glowmoji",
"repository": {
"type": "git",
"url": "https://github.com/emayom/glowmoji"
},
"author": "emayom <emayom7@gmail.com>",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "husky",
"tag": "npx changeset tag",
"version": "npx changeset version"
},
"lint-staged": {
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@radix-ui/react-context-menu": "^2.2.5",
"@tsparticles/engine": "^3.8.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.8.1",
"clsx": "^2.1.1",
"framer-motion": "^12.0.6",
"lodash": "^4.17.21",
"open-props": "^1.7.12",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@eslint/js": "^9.17.0",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^37.0.0",
"stylelint-order": "^6.0.4",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-tsconfig-paths": "^5.1.4"
},
"keywords": []
}