forked from lmsqueezy/wedges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.79 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"clean": "turbo clean && rm -rf node_modules && rm ./pnpm-lock.yaml && rm -rf ./.turbo && rm -rf ./coverage",
"dev": "turbo run dev --parallel",
"format": "prettier --check ./packages/**/src ./apps/** --cache",
"format:fix": "prettier --write ./packages/**/src ./apps/** --cache",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --passWithNoTests",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --passWithNoTests",
"prepare": "husky install",
"version": "changeset version",
"version:dev": "changeset version --snapshop --no-git-tag --tag dev",
"release": "pnpm build && changeset publish",
"release:dev": "pnpm build && changeset publish --snapshot --no-git-tag --tag dev"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@wedges/eslint-config": "workspace:*",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"react": "^18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.4.0",
"ts-jest": "^29.1.1",
"turbo": "^1.11.2",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/changelog-github": "^0.5.0"
}
}