forked from opral/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.68 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
{
"private": true,
"type": "module",
"workspaces": [
"source-code/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"---- TEST ----------------------------------------------------------": "",
"test": "turbo run test",
"---- LINT ----------------------------------------------------------": "",
"lint:base": "eslint --ignore-path .gitignore --cache",
"lint:fix:base": "npm run lint:base --fix",
"lint": "turbo run lint && npm run lint:base .",
"lint:fix": "turbo run lint:fix && npm run lint:fix:base .",
"format:base": "prettier --ignore-path .gitignore --check",
"format:fix:base": "prettier --ignore-path .gitignore --write",
"format": "turbo run format && npm run format:base --ignore source-code .",
"format:fix": "turbo run format:fix && npm run format:fix:base .",
"---- OTHER ---------------------------------------------------------": "",
"release": "changeset publish",
"clean": "npm run clean -ws && rm -f -r ./node_modules && rm -f ./.env",
"lint-staged": "lint-staged",
"prepare": "husky install",
"postinstall": "patch-package"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0 <19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-c8": "^0.29.8",
"concurrently": "^7.4.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-solid": "^0.9.3",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.2",
"patch-package": "^6.5.1",
"prettier": "2.8.3",
"turbo": "^1.9.3",
"typescript": "^4.9.4",
"vitest": "^0.29.8"
}
}