-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
32 lines (32 loc) · 912 Bytes
/
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
{
"name": "pluto-lang",
"private": true,
"scripts": {
"build": "turbo run build",
"watch": "turbo run watch --parallel",
"dev": "turbo run dev",
"lint": "turbo run lint --parallel",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "RELEASE=1 turbo run build lint && changeset version && changeset publish",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.0.3",
"turbo": "^2.0.5"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*.{ts,tsx,md}": [
"prettier --write --ignore-unknown"
]
}
}