-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 928 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
37
38
{
"name": "@dudykr/oss-services",
"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",
"pub": "changeset version && changeset publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"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"
}
}