-
Notifications
You must be signed in to change notification settings - Fork 291
/
package.json
75 lines (75 loc) · 2.48 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
69
70
71
72
73
74
75
{
"name": "vanilla-extract",
"version": "0.0.0",
"private": true,
"author": "SEEK",
"license": "MIT",
"scripts": {
"dev": "preconstruct dev",
"build": "preconstruct build && pnpm build:dts",
"build:dts": "tsx ./scripts/build-dts",
"watch": "preconstruct watch",
"start-fixture": "tsx ./test-helpers/src/startFixtureCLI",
"start": "pnpm start-fixture themed",
"start-site": "pnpm --filter=site start",
"build-site": "pnpm --filter=site build",
"test:unit": "pnpm test:jest && pnpm test:vitest",
"test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:vitest": "vitest --watch=false",
"test:playwright": "NODE_OPTIONS=--no-experimental-fetch pnpm test:build-next && playwright test",
"test:build-next": "tsx scripts/copy-next-plugin && pnpm --filter=@fixtures/next-* clean-build",
"format": "prettier --write .",
"lint": "pnpm run '/^lint:.*/'",
"lint:manypkg": "manypkg check",
"lint:prettier": "prettier --cache --check .",
"lint:tsc": "tsc",
"copy-readme-to-packages": "tsx scripts/copy-readme-to-packages",
"version": "changeset version && pnpm install --lockfile-only",
"prepare-release": "pnpm copy-readme-to-packages && pnpm build",
"release": "pnpm prepare-release && changeset publish"
},
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@manypkg/cli": "^0.21.4",
"@playwright/test": "^1.43.1",
"@preconstruct/cli": "^2.8.2",
"@testing-library/jest-dom": "^6.4.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.9.5",
"@vanilla-extract/jest-transform": "workspace:*",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"fast-glob": "^3.2.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"resolve.exports": "^2.0.2",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitest": "^1.5.0"
},
"preconstruct": {
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"keepDynamicImportAsDynamicImportInCommonJS": true
},
"packages": [
"packages/*"
]
},
"manypkg": {
"workspaceProtocol": "require"
},
"packageManager": "[email protected]",
"pnpm": {},
"volta": {
"node": "20.9.0"
}
}