-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"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([email protected])",
"version": "0.2.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",
"release": "standard-version"
},
"dependencies": {
"@vanilla-extract/css": "^1.15.3",
"next": "^14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vanilla-extract/next-plugin": "^2.4.2",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
},
"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"
]
}
}