forked from dominikg/svite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.87 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "svite",
"version": "0.8.0",
"description": "svelte integration plugin for vite",
"scripts": {
"lint": "run-p lint:script lint:style",
"lint:script": "eslint --ignore-path .gitignore '**/*.{js,ts,svelte,html,svx,md}'",
"lint:style": "stylelint --ignore-path .gitignore '**/*.{css,scss,svelte,html,js,ts,svx,md}'",
"lint:fix": "run-s lint:fix:script lint:fix:style",
"lint:fix:script": "npm run lint:script -- --fix",
"lint:fix:style": "npm run lint:style -- --fix",
"format": "prettier --ignore-path .gitignore '**/*.{css,scss,svelte,html,js,ts,svx,md}' --check",
"format:fix": "npm run format -- --write",
"fixup": "run-s lint:fix format:fix",
"test": "jest --no-cache --runInBand --force-exit --ci --json --outputFile=\"test/temp/jest-results.json\"",
"prerelease": "run-s lint \"test --scripts-prepend-node-path\"",
"release": "standard-version",
"beta-release": "npm run release -- -p beta",
"update-peers:check": "./scripts/check-updates.js --peers-only",
"update-peers:upgrade": "./scripts/check-updates.js --peers-only --upgrade",
"update-others:check": "./scripts/check-updates.js --skip-peers",
"update-others:upgrade": "./scripts/check-updates.js --skip-peers --upgrade",
"update-all:check": "./scripts/check-updates.js",
"update-all:upgrade": "./scripts/check-updates.js --upgrade"
},
"bin": "./bin/svite.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dominikg/svite.git"
},
"keywords": [
"vite",
"vite plugin",
"vitejs",
"vitejs plugin",
"svelte"
],
"author": "dominikg",
"license": "MIT",
"bugs": {
"url": "https://github.com/dominikg/svite/issues"
},
"homepage": "https://github.com/dominikg/svite#readme",
"dependencies": {
"@rollup/pluginutils": "^4.0.0",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"debug": "^4.2.0",
"degit": "^2.8.0",
"execa": "^4.0.3",
"lru-cache": "^6.0.0",
"rollup-plugin-svelte-hot": "0.10.0",
"vite": "1.0.0-rc.9"
},
"peerDependencies": {
"svelte": "3.29.0",
"svelte-hmr": "0.11.1"
},
"optionalDependencies": {
"rollup-plugin-visualizer": "^4.1.1",
"svelte-preprocess": "4.5.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-markdown": "^2.0.0-alpha.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-svelte3": "^2.7.3",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"husky": "^4.3.0",
"jest": "^26.6.0",
"jest-junit": "^12.0.0",
"lint-staged": "^10.4.2",
"npm-check-updates": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^1.4.1",
"puppeteer-core": "^5.3.1",
"rollup-plugin-visualizer": "^4.1.1",
"standard-version": "^9.0.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"svelte": "3.29.0",
"svelte-preprocess": "4.5.1",
"tree-kill": "^1.2.2",
"typescript": "^4.0.3",
"write-file-atomic": "^3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,svelte,html,md,svx}": "./node_modules/.bin/eslint --fix",
"*.{css,scss,svelte,html,js,ts,md,svx}": [
"./node_modules/.bin/stylelint --fix",
"./node_modules/.bin/prettier --write"
]
},
"engines": {
"node": "^12||^14",
"npm": "^6.14",
"yarn": "^1.22 || ^2",
"pnpm": "^5.5"
}
}