generated from mizdra/npm-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "honey-css-modules-monorepo",
"type": "module",
"repository": "https://github.com/mizdra/honey-css-modules.git",
"author": "mizdra <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/core",
"packages/codegen",
"packages/ts-plugin",
"packages/language-server",
"packages/vscode",
"packages/stylelint-plugin"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"lint": "run-s -c lint:*",
"lint:tsc": "tsc -b",
"lint:eslint": "eslint --cache --cache-strategy content .",
"lint:prettier": "prettier --cache --check .",
"test": "vitest --project unit",
"e2e": "run-s -c e2e:build e2e:vitest",
"e2e:build": "npm run build",
"e2e:vitest": "vitest --project e2e"
},
"prettier": "@mizdra/prettier-config-mizdra",
"devDependencies": {
"@mizdra/eslint-config-mizdra": "^6.0.0",
"@mizdra/inline-fixture-files": "^2.0.0",
"@mizdra/prettier-config-mizdra": "^2.0.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
"@types/postcss-safe-parser": "^5.0.4",
"@types/react": "^19.0.8",
"@types/vscode": "^1.96.0",
"@typescript/server-harness": "^0.3.5",
"dedent": "^1.5.3",
"eslint": "^9.17.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"stylelint": "^16.13.2",
"typescript": "^5.7.2",
"vitest": "^3.0.2"
}
}