forked from nkzw-tech/fbtee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.48 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
69
70
71
72
{
"name": "@nkzw/fbtee-internal",
"version": "0.2.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"build:all": "pnpm -r build && pnpm install && pnpm --filter=fbtee build:fbtee-strings && pnpm copy-files && cd example && pnpm build:fbtee",
"clean": "rm -rf packages/*/lib packages/fbtee/lib-tmp; cd example pnpm clean",
"copy-files": "find packages/* -type d -maxdepth 0 -exec cp README.md LICENSE {} \\;",
"dev": "cd example && pnpm build:fbtee && pnpm dev",
"format": "prettier --write .",
"jest": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --no-warnings\" node_modules/.bin/jest",
"lint": "eslint --cache .",
"lint:format": "prettier --cache --check .",
"ship": "pnpm clean && pnpm build:all && pnpm test && pnpm publish -r --access public",
"test": "npm-run-all --parallel lint jest tsc:check lint:format",
"tsc:check": "tsc"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/plugin-syntax-typescript": "^7.25.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/types": "^7.26.3",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@jest/globals": "30.0.0-alpha.6",
"@nkzw/eslint-config": "^1.19.0",
"@testing-library/react": "^16.1.0",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/invariant": "^2.2.37",
"@types/jest": "^29.5.14",
"@types/json-diff": "^1.0.3",
"@types/node": "^22.10.2",
"@types/prettier-2": "npm:@types/prettier@^2.0.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/yargs": "^17.0.33",
"eslint": "^8.0.0",
"eslint-plugin-workspaces": "^0.10.1",
"invariant": "^2.2.4",
"jest": "30.0.0-alpha.6",
"jest-environment-jsdom": "30.0.0-alpha.6",
"npm-run-all2": "^7.0.2",
"nullthrows": "^1.1.1",
"prettier": "4.0.0-alpha.10",
"prettier-2": "npm:prettier@^2.8.8",
"prettier-plugin-packagejson": "^2.5.6",
"react-dom": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"@types/prettier-2",
"eslint",
"prettier-2"
]
},
"overrides": {
"react-is@^*": "19.0.0"
}
}
}