-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.31 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
{
"name": "vite-template",
"description": "A frontend build to optimize CSS3 and JavaScript files.",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/krudi/vite-template/LICENSE"
}
],
"version": "0.1.0",
"authors": [
{
"name": "krudi",
"email": "[email protected]",
"url": "https://github.com/krudi/vite-template-template"
}
],
"private": false,
"homepage": "https://github.com/krudi/vite-template#readme",
"bugs": {
"url": "https://github.com/krudi/vite-template/issue"
},
"keywords": [
"template"
],
"repository": {
"type": "git",
"url": "https://github.com/krudi/vite-template.git"
},
"engines": {
"node": ">= 20.11.0",
"npm": ">= 10.8.1"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"watch": "vite build --watch",
"preview": "vite preview",
"lint:js": "eslint -c ./eslint.config.mjs",
"lint:js:fix": "eslint -c ./eslint.config.mjs --fix",
"lint:css": "stylelint --c ./stylelint.config.mjs **/*.css",
"lint:css:fix": "stylelint -c ./stylelint.config.mjs --fix **/*.css",
"lint:files": "prettier --check \"**/*.{js,ts,css,html,xml,yaml,yml,json,json5,graphql,gql}\"",
"lint:files:fix": "prettier --write \"**/*.{js,ts,css,html,xml,yaml,yml,json,json5,graphql,gql}\"",
"lint:full": "npm run lint:js && npm run lint:css && npm run lint:files",
"lint:full:fix": "npm run lint:js:fix && npm run lint:css:fix && npm run lint:files:fix"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.13.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"postcss": "^8.5.2",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-nested": "^7.0.2",
"prettier": "^3.5.1",
"stylelint": "^16.14.1",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.0"
}
}