generated from safethecode/ve_
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "ve_",
"description": "🐠 pickled with zero-runtime and variants, I left Stitches(@stitchesjs) and came to VE(@vanilla-extract-css). I Love VE ❤️",
"author": "safethecode(iam@sonjim.in)",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"prettier:fix": "prettier **/*.ts **/*.tsx --write",
"pre-commit": "lint-staged"
},
"dependencies": {
"@vanilla-extract/css": "^1.12.0",
"next": "13.4.12",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "^2.0.10",
"react-wrap-balancer": "^1.1.0"
},
"devDependencies": {
"@types/node": "20.4.4",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@vanilla-extract/next-plugin": "^2.2.1",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"typescript": "5.1.6"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn prettier:fix",
"yarn lint:fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}