-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"private": true,
"name": "froute",
"version": "0.0.0",
"main": "index.js",
"author": "Hanakla <hanakla.dev@gmail.com>",
"license": "MIT",
"workspaces": [
"pkgs/*"
],
"scripts": {
"watch:build": "wsrun -p @fleur/froute -c watch",
"watch:example": "wsrun -p examples -c watch",
"build": "wsrun -m -c build",
"test": "wsrun -m --no-prefix -c test",
"sync:readme": "cp ./README.md ./pkgs/froute/ && :",
"example:start": "wsrun -p examples -c start",
"postinstall": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^8.0.3",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"wsrun": "^5.2.4"
},
"lint-staged": {
"README.md": [
"yarn sync:readme",
"git add ./pkgs/froute/README.md"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "yarn@3.3.1"
}