forked from TomokiMiyauci/vite-preact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "vite-preact",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"test": "jest --config test/jest.config.ts",
"build": "vite build",
"lint:script": "eslint --ext .ts,tsx --ignore-path .gitignore .",
"lint:style": "stylelint src/**/*.{css,scss}"
},
"dependencies": {
"preact": "^10.5.13",
"preact-render-to-string": "^5.1.19"
},
"devDependencies": {
"@preact/preset-vite": "^2.1.0",
"@prefresh/vite": "^0.10.0",
"@testing-library/preact": "^2.0.1",
"@testing-library/preact-hooks": "^1.1.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-preact": "^1.1.1",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-preset-preact": "git+https://github.com/futuredayv/jest-preset-preact.git",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"sass": "^1.32.13",
"stylelint": "^13.7.2",
"stylelint-config-recess-order": "^2.1.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vite": "^2.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{css,scss}": "stylelint --fix",
"*": "prettier -w -u"
}
}