-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.77 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@treely/forest-management",
"version": "0.0.0-development",
"license": "MIT",
"author": "Tree.ly FlexCo",
"main": "dist/index.js",
"module": "dist/forest-management.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "dts lint",
"prepare": "dts build",
"size": "size-limit",
"start": "dts watch",
"test": "dts test --passWithNoTests",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./src/test/setupTests.ts"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"collectCoverageFrom": [
"./src/**/*.{js,jsx,ts,tsx}",
"!**/src/test/**",
"!**/src/index.ts"
]
},
"engines": {
"node": ">=18 <=22"
},
"size-limit": [
{
"path": "dist/forest-management.cjs.production.min.js",
"limit": "300 KB"
},
{
"path": "dist/forest-management.esm.js",
"limit": "100 KB"
}
],
"description": "@treely/forest-management is a open source library maintained by Tree.ly.",
"repository": {
"type": "git",
"url": "https://github.com/treely/forest-management.git"
},
"bugs": {
"url": "https://github.com/treely/forest-management/issues"
},
"homepage": "https://tree.ly",
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@size-limit/preset-big-lib": "^9.0.0",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-webpack5": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@tsconfig/recommended": "^1.0.3",
"@tsconfig/vite-react": "^2.0.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"dts-cli": "^2.0.3",
"husky": "^8.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^19.0.2",
"size-limit": "^9.0.0",
"storybook": "^7.5.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"boemly": "^7.0.0"
},
"peerDependencies": {
"react": ">=18",
"react-intl": ">=6"
}
}