-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.93 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
{
"name": "@the-curve-consulting/texmo-react-components",
"repository": {
"type": "git",
"url": "https://github.com/the-curve-consulting/texmo-react-components.git"
},
"version": "0.3.0",
"description": "",
"main": "dist/index.min.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/the-curve-consulting/texmo-react-components",
"license": "MIT",
"private": false,
"scripts": {
"start": "rollup -c rollup.config.js -w",
"build": "tsc && rollup -c rollup.config.js",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:ci": "cross-env CI=1 jest",
"prepare": "husky install",
"svgr": "svgr --icon 'auto' --typescript -d src/icons src/assets/icons",
"generate-icon-types": "node ./scripts/GenerateIconTypes.js",
"build:icons": "npm run svgr && npm run generate-icon-types"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@svgr/cli": "^8.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"./node_modules/.bin/prettier --write",
"./node_modules/.bin/eslint"
]
},
"dependencies": {
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"classnames": "^2.5.1",
"dayjs": "^1.11.10",
"react-bootstrap": "^2.10.0",
"react-bootstrap-typeahead": "^6.3.2",
"react-quill": "^2.0.0",
"sass": "^1.70.0"
}
}