forked from neolution-ch/react-data-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.23 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.23 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@neolution-ch/react-data-table",
"version": "2.1.1",
"homepage": "https://neolution-ch.github.io/react-data-table",
"description": "A small and clean data-table with a lot of integrated functions",
"repository": {
"type": "git",
"url": "git+https://github.com/neolution-ch/react-data-table"
},
"license": "MIT",
"author": "Neolution",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "shx rm -rf dist && microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx --no-compress --tsconfig ./tsconfig.microbundle.json",
"lint": "eslint \"**/*.{ts,tsx}\" --cache --max-warnings 0",
"prepack": "yarn build",
"prettier-check": "prettier --check .",
"prettier-write": "prettier --write .",
"prepare-pr": "yarn prettier . --write && yarn lint && yarn build && yarn test\"",
"start": "microbundle watch --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx --no-compress --tsconfig ./tsconfig.microbundle.json",
"start-all": "concurrently \"yarn start\" \"yarn start-yalc\"",
"start-yalc": "yarn nodemon --watch dist -x \"yarn yalc push\"",
"test": "cross-env DEBUG_PRINT_LIMIT=100 jest",
"tsc": "tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@neolution-ch/react-pattern-ui": "^2.0.1",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.9",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/reactstrap": "^8.7.2",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-loader": "^8.2.4",
"bootstrap": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-storybook": "^0.5.8",
"gh-pages": "^3.2.3",
"jest": "^27.5.1",
"microbundle": "^0.14.2",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reactstrap": "^8.9.0",
"shx": "^0.3.4",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reactstrap": "^8.0.0"
},
"engines": {
"node": ">=14"
},
"dependencies": {}
}