-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
60 lines (60 loc) · 2.08 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
{
"name": "meta",
"type": "module",
"license": "MIT",
"private": true,
"browserslist": ["defaults"],
"engines": {
"npm": ">=7.0.0",
"node": ">=20.0.0"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/LouisBrunner"
},
"scripts": {
"clean": "rm -rf packages/*/dist examples/*.js coverage",
"build:types": "node esbuild/run-all.js tsc -p ./tsconfig.json --declarationDir dist",
"build:esm": "node esbuild/run-all.js node ../../esbuild/build.js",
"build:examples": "node esbuild/examples.js",
"build:all": "npm run build && npm run build:examples",
"build": "npm run build:esm && npm run build:types",
"typecheck": "tsc --noEmit",
"format:fix:internal": "npx @biomejs/biome format --write",
"format:fix": "npm run format:fix:internal -- .",
"vet": "npm run typecheck && npx @biomejs/biome check",
"vet:ci": "npm run typecheck && npx @biomejs/biome ci",
"test": "jest --config jest.config.js",
"test:watch": "npm run test -- --watch",
"test:ci": "CI=yes npm run test",
"start": "node esbuild/dev.js",
"start:dev": "NODE_ENV=development npm run start",
"publish": "npm run prepare && node esbuild/publish.js",
"prepare": "npm run clean && npm run build && npm run vet && npm run test"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@biomejs/biome": "^1.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/react-dom": "^19.0.2",
"@types/react": "^19.0.2",
"esbuild": "^0.24",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.16.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-notifier": "^10.0.1",
"react": "^19.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-test-backend": "^16.0.1",
"react-dnd-test-utils": "^16.0.1",
"react-dnd-touch-backend": "^16.0.1",
"react-dom": "^19.0.0",
"typescript": "^5.7.2"
},
"workspaces": ["./packages/*"]
}