-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 2.05 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
60
61
62
63
64
65
66
67
68
{
"private": true,
"type": "module",
"scripts": {
"postinstall": "patch-package",
"dev:happy-css-modules": "npm -w example run hcm",
"dev:stylelint-happy-css-modules": "npm -w stylelint-happy-css-modules run build && npm -w example run lint",
"build": "npm run build --workspaces --if-present",
"lint": "run-s -c lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "ESLINT_USE_FLAT_CONFIG=true eslint .",
"lint:tsc": "tsc -p tsconfig.json",
"test": "NODE_OPTIONS=\"--experimental-vm-modules $NODE_OPTIONS\" jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mizdra/happy-css-modules.git"
},
"author": "mizdra",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"prettier": "@mizdra/prettier-config-mizdra",
"workspaces": [
"packages/happy-css-modules",
"packages/stylelint-happy-css-modules",
"packages/typescript-happy-css-modules-plugin",
"packages/example"
],
"devDependencies": {
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "^8.37.0",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@mizdra/eslint-config-mizdra": "^2.0.0",
"@mizdra/prettier-config-mizdra": "^1.0.0",
"@swc/core": "^1.5.7",
"@swc/jest": "^0.2.36",
"@types/dedent": "^0.7.2",
"@types/eslint": "^9.6.0",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/less": "^3.0.6",
"@types/line-column": "^1.0.2",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.12.12",
"@types/prettier": "^2.7.3",
"@types/yargs": "^17.0.32",
"@typescript/server-harness": "^0.3.5",
"dedent": "^1.5.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"less": "^4.2.0",
"line-column": "^1.0.2",
"npm-run-all2": "^6.2.0",
"patch-package": "^8.0.0",
"postcss-import": "^16.1.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.9",
"postcss-simple-vars": "^7.0.1",
"prettier": "~2.8.8",
"sass": "^1.77.1",
"stylelint": "^16.5.0",
"typescript": "^5.4.5"
}
}