-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 917 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 917 Bytes
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
{
"name": "solid-snowfall-monorepo",
"private": false,
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "turbo run dev"
},
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-solid": "^0.14.5",
"gh-pages": "^6.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"lint-staged": {
"*.+(js|json|ts|tsx)": [
"pnpm run format"
],
"*.+(js|ts|tsx)": [
"pnpm run lint"
]
}
}