-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "formex",
"version": "0.1.1",
"description": "",
"main": "index.js",
"scripts": {
"clean:node_modules": "find . -maxdepth 4 -type d -name node_modules | xargs -I {} rm -rf {}",
"build:packages": "turbo build:packages",
"lint": "turbo lint",
"dev:react": "module=dev-react vite",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm --filter=@formex/* publish --access public"
},
"keywords": [],
"author": "Oyster Lee <[email protected]> (https://linktr.ee/OysterD3)",
"license": "ISC",
"devDependencies": {
"@types/node": "18.19.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"bumpp": "9.3.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.2.5",
"turbo": "1.12.2",
"typescript": "5.3.3",
"vite": "5.0.12",
"vite-plugin-dts": "3.7.2"
},
"dependencies": {
"nanoid": "5.0.5"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true
}
]
}
}
}