-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
80 lines (80 loc) · 2.65 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
{
"name": "react-bs-datatable",
"version": "3.15.0",
"description": "React Bootstrap Datatable (without jQuery) with sorting, filter, and pagination",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"test": "jest",
"jest": "jest --watch",
"build": "rm -rf lib && yarn build:esm && yarn build:cjs",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"docs": "typedoc --options typedoc.json",
"sb:dev": "storybook dev -p 6006 --no-open",
"sb:prod": "storybook build -o docs/dist/storybook",
"build-docs": "yarn --cwd docs build && yarn sb:prod",
"release": "node scripts/release.mjs",
"generate-story-data": "ts-node --esm scripts/generate-story-data.ts",
"check-latest-docs": "yarn build:docs && ts-node --esm scripts/check-latest-docs.ts"
},
"repository": "git@github.com:imballinst/react-bs-datatable.git",
"author": "Try Ajitiono",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/imballinst/react-bs-datatable#readme",
"devDependencies": {
"@actions/core": "1.9.1",
"@babel/core": "7.16.12",
"@babel/preset-env": "7.3.4",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@changesets/cli": "2.27.1",
"@fortawesome/fontawesome-svg-core": "6.1.1",
"@fortawesome/free-solid-svg-icons": "6.1.1",
"@fortawesome/react-fontawesome": "0.2.0",
"@storybook/addon-actions": "7.6.6",
"@storybook/addon-essentials": "7.6.6",
"@storybook/addon-links": "7.6.6",
"@storybook/react": "7.6.6",
"@storybook/react-webpack5": "7.6.6",
"@storybook/testing-react": "2.0.0",
"@swc/core": "1.2.136",
"@swc/jest": "0.2.17",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@types/jest": "27.4.0",
"@types/node": "17.0.12",
"@types/react": "17.0.38",
"babel-jest": "27.4.6",
"babel-loader": "8.2.3",
"bootstrap": "5.1.3",
"date-fns": "2.28.0",
"execa": "6.0.0",
"jest": "27.4.7",
"prettier": "2.5.1",
"react": "17.0.2",
"react-bootstrap": "2.1.1",
"react-dom": "17.0.2",
"storybook": "7.6.6",
"ts-node": "10.7.0",
"typedoc": "0.22.11",
"typedoc-plugin-markdown": "3.11.13",
"typescript": "4.5.5"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "6.x",
"@fortawesome/free-solid-svg-icons": "6.x",
"@fortawesome/react-fontawesome": "0.x",
"bootstrap": "5.x",
"react": ">=16.8",
"react-bootstrap": "2.x"
},
"engines": {
"node": ">=16"
},
"packageManager": "yarn@4.0.2"
}