-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.94 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
{
"name": "create-node-app-tools",
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build-storybook": "turbo run build-storybook",
"changeset": "changeset",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,json,css,sass,scss,less,html,yml,yaml}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint-staged": "lint-staged",
"prepare": "is-ci || husky",
"publish-packages": "turbo run lint && changeset version && turbo run build && changeset publish",
"storybook": "turbo run storybook",
"test": "turbo run test",
"test:all": "tsx --test \"packages/**/tests/**/*.test.mts\"",
"test:coverage": "npm run build && COVERAGE=1 c8 --extension .ts --include 'packages/**/src/**/*.ts' --exclude 'packages/**/dist/**' --reporter=text --reporter=lcov --branches 59 --functions 60 --lines 60 --statements 60 tsx --test \"packages/**/tests/**/*.test.mts\"",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@create-node-app/eslint-config": "*",
"@eslint/eslintrc": "^3.3.1",
"c8": "^10.1.3",
"@typescript-eslint/parser": "^8.44.1",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"eslint-config-turbo": "^2.5.6",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"turbo": "^2.5.6"
},
"c8": {
"reporter": [
"text",
"lcov"
],
"branches": 59,
"lines": 60,
"functions": 60,
"statements": 60,
"exclude": [
"**/node_modules/**",
"**/dist/**",
"**/tests/**",
"**/*.d.ts"
],
"include": [
"packages/**/src/**/*.ts"
]
},
"dependencies": {
"tsup": "^8.5.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=22.0.0"
},
"packageManager": "npm@10.9.2",
"overrides": {
"@babel/runtime": "7.26.10",
"brace-expansion": "2.0.2"
}
}