forked from stijnvanhulle/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "template",
"version": "1.0.0",
"private": true,
"description": "Monorepo template",
"repository": {
"type": "git",
"url": "https://github.com/stijnvanhulle/template.git"
},
"license": "MIT",
"author": "Stijn Van Hulle <[email protected]",
"workspaces": {
"packages": [
"packages/**"
]
},
"scripts": {
"build": "turbo run build",
"graph": "nx graph ",
"lint": "eslint packages/**/*.ts",
"lint-fix": "eslint packages/**/*.ts --quiet --fix",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"pre-commit": "turbo run pre-commit && pnpm run lint-fix",
"pre-push": "turbo run pre-push",
"release": "turbo run release",
"test": "jest --runInBand --passWithNoTests",
"test:local": "jest --maxWorkers=50%",
"test:watch": "jest --maxWorkers=25% --watch",
"typecheck": "turbo run typecheck",
"upgrade": "ncu -u && ncu -u --packageFile **/packages/**/package.json"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@swc/core": "^1.3.18",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-formatjs": "^4.3.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-check-updates": "^16.4.1",
"nx": "^15.2.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"turbo": "^1.6.3",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=14.18"
},
"dependencies": {
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0"
}
}