-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.25 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-url-table",
"version": "0.0.4",
"license": "MIT",
"author": "Yauheni Kokatau",
"description": "Smart and flexible table component built with React and for React projects. based on React16 hooks and mobx-react-lite",
"homepage": "https://ekokotov.github.io/react-url-table",
"repository": {
"type": "git",
"url": "https://www.github.com/ekokotov/react-url-table"
},
"keywords": [
"react-url-table",
"react",
"table",
"grid",
"ui-table",
"react-grid"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"watch:build": "tsc --watch",
"clean": "rimraf dist",
"start": "webpack-dev-server --mode development --config ./webpack.config.js --hot --inline --progress --watch --open",
"test-watch": "jest --watch",
"test": "jest",
"tslint": "tslint ./src/**/*.{ts,tsx} --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "build-storybook && gh-pages -d storybook-static && rimraf storybook-static"
},
"peerDependencies": {
"mobx": "^5.10.0",
"mobx-react": "^6.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"files": [
"dist",
"styles",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=8.5",
"npm": ">=6.0"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"react-paginate": "^6.3.0",
"mobx": "^5.10.0",
"mobx-react": "^6.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-centered": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@storybook/theming": "^5.1.9",
"@types/classnames": "^2.2.8",
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.134",
"@types/nock": "^10.0.3",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-paginate": "^6.2.1",
"@types/storybook__react": "^4.0.2",
"async-wait-until": "^1.2.4",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"cross-env": "^5.0.1",
"css-loader": "^1.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.4.0",
"gh-pages": "^2.1.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jest": "^24.8.0",
"jest-fetch": "^1.1.1",
"react-docgen-typescript-loader": "^3.1.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.1",
"storybook-readme": "^5.0.8",
"style-loader": "^0.22.1",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3",
"tslint": "^5.5.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^4.0.0",
"typescript": "^3.0.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}