forked from swc-project/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 850 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
33
34
35
36
{
"name": "swc-project-website-workspace",
"packageManager": "[email protected]",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"run-turbo": "turbo",
"prepare": "husky install",
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"test": "turbo run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "8.23.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"turbo": "^2.0.14"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
}
}