-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "prefresh",
"scripts": {
"build": "pnpm --filter @prefresh/web-dev-server build && pnpm --filter @prefresh/utils build && pnpm --filter @prefresh/babel-plugin build",
"lint": "eslint src",
"test": "jest --clearCache && jest --runInBand --forceExit --detectOpenHandles",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/preactjs/prefresh.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/preactjs/prefresh/issues"
},
"authors": [
"The Preact Authors (https://github.com/preactjs/preact/contributors)"
],
"homepage": "https://github.com/preactjs/prefresh#readme",
"private": true,
"devDependencies": {
"@changesets/changelog-github": "^0.2.8",
"@changesets/cli": "^2.26.1",
"eslint": "8.42.0",
"eslint-config-developit": "^1.2.0",
"eslint-config-prettier": "^8.8.0",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^10.5.4",
"prettier": "^2.8.8",
"puppeteer": "^23.5.3",
"yarn-deduplicate": "^3.1.0"
},
"eslintConfig": {
"extends": [
"developit",
"prettier"
],
"rules": {
"prefer-rest-params": 0,
"prefer-spread": 0,
"no-cond-assign": 0
}
},
"eslintIgnore": [
"dist",
"node_modules",
"test",
"temp"
],
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write"
]
}
}