-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.37 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://json.schemastore.org/package.json",
"name": "retail_arbitrage",
"version": "1.0.0",
"main": "link.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"author": "xpz24",
"license": "MIT",
"description": "",
"type": "module",
"devDependencies": {
"@csstools/stylelint-at-risk": "^2.0.1",
"@eslint/js": "^9.13.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@isnotdefined/stylelint-plugin": "^5.0.0",
"@tsconfig/node23": "^23.0.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.8.1",
"browserslist": "^4.24.2",
"esbuild-plugin-browserslist": "^0.15.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.4.3",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-unicorn": "^56.0.1",
"html-validate": "^8.24.2",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-custom-selectors": "^8.0.4",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"rehype": "^13.0.2",
"rehype-format": "^5.0.1",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-rehype": "^11.1.1",
"remark-toc": "^9.0.0",
"stylelint": "^16.11.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-group-selectors": "^1.0.10",
"stylelint-media-use-custom-media": "^4.0.0",
"stylelint-no-unresolved-module": "^2.3.0",
"stylelint-order": "^6.0.4",
"stylelint-plugin-logical-css": "^1.2.1",
"stylelint-rem-over-px": "^1.0.2",
"stylelint-use-nesting": "^6.0.0",
"stylelint-value-no-unknown-custom-properties": "^6.0.1",
"tailwindcss": "^3.4.15",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^6.0.1",
"yaml": "^2.6.1"
},
"prettier": "./prettier.config.mjs",
"browserslist": [
"last 2 edge versions",
"last 2 chrome versions"
],
"files": [
"./src/**/*",
"./public/**/*"
]
}