-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.47 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
{
"name": "@tincre/promo-dashboard",
"version": "0.13.8",
"license": "MPL-2.0",
"author": "Jason R. Stevens, CFA on behalf of Tincre <jason@tincre.com> (https://tincre.com)",
"main": "dist/index.js",
"module": "dist/promo-dashboard.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 --coverage"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"testEnvironment": "jsdom"
},
"peerDependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": ">=2.0",
"@tincre/promo-chat": ">=0.0.12",
"@tincre/promo-types": ">=0.0.4",
"chart.js": ">=3.9",
"react": ">=16",
"react-chartjs-2": ">=4.3",
"react-hot-toast": "^2.4.0",
"react-intersection-observer": "^9.5.2",
"react-json-to-csv": ">=1.1",
"tailwindcss": ">=3",
"yup": ">=0.32"
},
"engines": {
"node": ">=18"
},
"size-limit": [
{
"path": "dist/promo-dashboard.cjs.production.min.js",
"limit": "25 KB"
},
{
"path": "dist/promo-dashboard.esm.js",
"limit": "25 KB"
}
],
"devDependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.12",
"@nastyox/rando.js": "^2.0.5",
"@size-limit/preset-small-lib": "^8.1.0",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@tincre/promo-chat": "^0.0.15",
"@tincre/promo-types": "^0.0.4",
"@tsconfig/create-react-app": "^1.0.2",
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-json-to-csv": "^1.0.0",
"canvas": "^2.10.2",
"chart.js": "^3.9.1",
"clsx": "^1.2.1",
"dts-cli": "^1.6.0",
"husky": "^8.0.1",
"markdown-to-jsx": "^7.3.2",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-intersection-observer": "^9.5.2",
"react-json-to-csv": "^1.1.0",
"resize-observer-polyfill": "^1.5.1",
"size-limit": "^8.1.0",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"yup": "^0.32.11"
}
}