-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.76 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
76
77
78
79
{
"name": "@vocab-private/monorepo",
"version": "0.0.1",
"description": "Vocab is an internationalisation framework for React",
"bugs": {
"url": "https://github.com/seek-oss/vocab/issues"
},
"homepage": "https://github.com/seek-oss/vocab#readme",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/vocab.git"
},
"scripts": {
"start:direct": "pnpm dev && pnpm --filter @vocab-fixtures/direct compile && pnpm start-fixture direct",
"start:server": "pnpm dev && pnpm --filter @vocab-fixtures/server compile && pnpm start-fixture server",
"start:simple": "pnpm dev && pnpm --filter @vocab-fixtures/simple compile && pnpm start-fixture simple",
"build": "preconstruct build",
"dev": "preconstruct dev",
"watch": "preconstruct watch",
"format": "pnpm run --stream '/^format:.*/'",
"format:eslint": "eslint --fix --cache .",
"format:manypkg": "manypkg fix",
"format:prettier": "prettier --cache --write .",
"lint": "pnpm run --stream '/^lint:.*/'",
"lint:eslint": "eslint --cache .",
"lint:manypkg": "manypkg check",
"lint:prettier": "prettier --cache --check .",
"lint:tsc": "tsc",
"release": "pnpm build && pnpm copy-readme-to-packages && changeset publish",
"version": "changeset version && pnpm install --lockfile-only",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"copy-readme-to-packages": "tsx scripts/copy-readme-to-packages",
"start-fixture": "tsx test-helpers/src/start-fixture",
"run-server-fixture": "tsx test-helpers/src/run-server-fixture",
"compile-fixtures": "pnpm --filter @vocab-fixtures/* compile",
"fixture:phrase:push": "pnpm run --filter @vocab-fixtures/phrase push",
"fixture:phrase:pull": "pnpm run --filter @vocab-fixtures/phrase pull"
},
"dependencies": {
"@babel/core": "^7.12.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.0",
"@manypkg/cli": "^0.21.4",
"@preconstruct/cli": "^2.3.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.9",
"@types/wait-on": "^5.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-seek": "^13.0.0",
"expect-puppeteer": "^10.0.0",
"fast-glob": "^3.2.4",
"jest": "^29.4.3",
"jest-puppeteer": "^10.0.1",
"prettier": "^2.1.2",
"puppeteer": "^22.9.0",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"webpack": "^5.37.0"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"manypkg": {
"workspaceProtocol": "require"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.15.1",
"pnpm": "9.4.0"
}
}