-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"name": "fractality",
"private": true,
"type": "module",
"packageManager": "pnpm@12.4.2",
"engines": {
"node": ">=22.13.0"
},
"devDependencies": {
"@babel/preset-react": "^8.0.1",
"@eslint/js": "^10.0.1",
"@typescript-eslint/utils": "^8.70.1",
"@vitest/eslint-plugin": "^1.6.27",
"eslint": "^10.11.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.12.0",
"husky": "^9.1.7",
"jest-extended": "^7.0.0",
"lerna": "^10.0.1",
"lint-staged": "^17.5.1",
"mock-argv": "^5.0.0",
"mock-fs": "^5.5.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.9.8",
"stylelint": "^17.15.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^7.3.0",
"vitest": "^5.0.1"
},
"scripts": {
"clean": "lerna clean",
"eslint": "eslint .",
"stylelint": "stylelint --ignore-path .gitignore \"**/*.scss\"",
"validate": "pnpm run eslint && pnpm run stylelint",
"format": "prettier . --write",
"test": "pnpm run test:unit",
"test:unit": "vitest run",
"prepare": "husky"
}
}