-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 3.06 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
{
"name": "@vlsergey/react-bootstrap-pagetable",
"version": "0.37.0",
"description": "Complex solution to work with pageable data, including sorting, filtering, actions, changing displayed columns, etc.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"scripts": {
"clean": "rimraf lib/",
"build": "cross-env NODE_ENV=production tsc -p ./src/tsconfig-cjs.json && cross-env NODE_ENV=production tsc -p ./src/tsconfig-esm.json",
"build:watch": "cross-env NODE_ENV=development tsc -w --preserveWatchOutput -p ./src/tsconfig-esm.json",
"eslint:check": "eslint --ignore-pattern \"!.eslintrc.js\" *.js src/**/*.ts src/**/*.tsx test/**/*.js test/**/*.ts* demo/*.js demo/src/**/*.tsx",
"eslint:fix": "eslint --ignore-pattern \"!.eslintrc.js\" --fix *.js src/**/*.ts* test/**/*.js test/**/*.ts* demo/*.js demo/src/**/*.tsx",
"eslint:watch": "esw --color --watch --ext .js --ext .jsx --ext .ts --ext .tsx --ignore-pattern \"!.eslintrc.js\" --fix *.js src/**/*.ts* test/**/*.ts* demo/*.js demo/src/**/*.tsx",
"git:commitDocs": "git add docs/* && git diff-index --quiet HEAD || git commit -m \"Automatically rebuild docs by package.json script\"",
"test": "cross-env NODE_ENV=development karma start karma.conf.js --single-run",
"test:watch": "cross-env NODE_ENV=development karma start karma.conf.js --no-single-run",
"test:watch:chrome": "cross-env NODE_ENV=development karma start karma.conf.js --no-single-run --browsers Chrome",
"preversion": "npm run build && npm run eslint:fix && npm test && npm run clean && npm run build && npm run clean --prefix=demo && npm run build --prefix=demo && npm run git:commitDocs",
"version": "npm publish --access=public",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlsergey/react-bootstrap-pagetable.git"
},
"bugs": {
"url": "https://github.com/vlsergey/react-bootstrap-pagetable/issues"
},
"homepage": "https://github.com/vlsergey/react-bootstrap-pagetable#readme",
"keywords": [
"react",
"promise",
"promises",
"vlsergey"
],
"author": {
"name": "Sergey Vladimirov",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.4.1",
"@vlsergey/react-bootstrap-button-with-spinner": "^2.0.0",
"@vlsergey/react-bootstrap-pagination": "^3.0.2",
"memoize-one": "^5.2.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.9",
"@vlsergey/js-config": "^8.1.0",
"eslint-watch": "^7.0.0",
"eslint-webpack-plugin": "^3.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.3",
"react-dom": "^17.0.2",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0"
},
"peerDependencies": {
"@fortawesome/fontawesome-free": ">=5",
"prop-types": ">=15.7",
"react": ">16",
"react-bootstrap": ">=1",
"react-dom": ">16",
"react-router": ">=5"
}
}