-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.14 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.14 KB
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
{
"name": "meta",
"type": "module",
"license": "MIT",
"private": true,
"browserslist": [
"defaults"
],
"engines": {
"npm": ">=7.0.0",
"node": ">=18.0.0"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/LouisBrunner"
},
"scripts": {
"clean": "rm -rf packages/*/dist examples/*.js coverage",
"build:types": "lerna exec -- tsc -p ./tsconfig.json --declarationDir dist",
"build:esm": "lerna exec -- 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",
"lint": "eslint . && npm run typecheck",
"typecheck": "tsc --noEmit",
"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",
"prepare": "npm run clean && npm run build && npm run lint && npm run test"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"esbuild": "^0.21",
"esbuild-jest": "^0.5.0",
"esbuild-node-externals": "^1.13.1",
"eslint": "^8.48.0",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-testing-library": "^6.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-runner-eslint": "^2.2.0",
"lerna": "^6.6.2",
"node-notifier": "^10.0.1",
"react": "^18.3.1",
"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": "^18.3.1",
"typescript": "^5.5.3"
},
"workspaces": [
"./packages/*"
]
}