-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 938 Bytes
/
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
{
"name": "valory",
"private": true,
"license": "MIT",
"repository": "https://github.com/haxgun/valory",
"author": "MAGICX <[email protected]>",
"type": "module",
"browserslist": [
"defaults"
],
"engines": {
"node": ">=20",
"pnpm": ">=9.12"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write src"
},
"dependencies": {
"alpinejs": "^3.13.2",
"autoprefixer": "^10.4.16",
"modern-normalize": "^3.0.1",
"postcss-uncss": "^0.17.0",
"prettier": "^3.0.3",
"set-interval-async": "^3.0.3",
"uncss": "^0.17.3",
"vite-plugin-compression": "^0.5.1"
},
"devDependencies": {
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass": "^1.69.5",
"vite": "^4.4.5"
}
}