-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
56 lines (56 loc) · 2.45 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
{
"private": true,
"scripts": {
"postinstall": "husky install && pnpm ls --r --filter \"./packages/*\"",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" build",
"build:examples": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./examples/*\" --parallel build",
"check": "pnpm run commit-check && pnpm run build && pnpm --filter \"./packages/*\" --parallel run \"/^(test|lint|type-check)/\"",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel test",
"lint": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel lint",
"type-check": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" --parallel type-check",
"commit-check": "commitlint --from=HEAD~1 --verbose",
"dev": "cross-env NODE_OPTIONS=--max-old-space-size=16384 pnpm --filter \"./packages/*\" dev",
"clean": "rm -rf node_modules && rm -rf package-lock.json && rm -rf **/*package-lock.json && rm -rf **/*node_modules && rm -rf **/*dist && rm -rf **/*.turbo"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/master-co/css.git"
},
"devDependencies": {
"@master/css-extractor": "workspace:^",
"@master/css-extractor.vite": "workspace:^",
"@master/css-renderer": "workspace:^",
"@master/eslint-plugin-css": "workspace:^",
"@swc-node/jest": "^1.6.8",
"@techor/fs": "^2.5.19",
"@techor/glob": "^2.5.19",
"@techor/jest": "^2.5.19",
"@techor/jest-dom": "^2.5.19",
"@techor/pack": "^2.5.19",
"@techor/repo": "^2.5.19",
"@techor/version": "^2.5.19",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"cross-env": "^7.0.3",
"css-shared": "workspace:^",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-glob": "^3.2.12",
"jest": "^29.6.1",
"jest-extended": "^4.0.0",
"nanoid": "^4.0.2",
"nodemon": "^2.0.22",
"pretty-ms": "^8.0.0",
"shuffle-array": "^1.0.1",
"spawnd": "^9.0.0",
"strip-ansi": "^7.1.0",
"ts-dedent": "^2.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.7",
"turbo": "^1.10.15"
}
}