-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.7 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
{
"name": "dynamic-table-react",
"version": "0.1.0-alpha.4",
"description": "dynamic table component for react",
"main": "lib/index.js",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/EswaramoorthyKarthikeyan/dynamic-table.git"
},
"keywords": [
"table",
"react",
"javascript"
],
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"scripts": {
"build": "rimraf lib && webpack",
"start": "rimraf lib/ && webpack --env mode=dev --watch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "GPL-3.0-or-later",
"author": {
"name": "Eswaramoorthy Karthikeyan",
"email": "[email protected]",
"url": "https://github.com/EswaramoorthyKarthikeyan"
},
"contributors": [
{
"name": "aghontpi",
"email": "[email protected]",
"url": "https://github.com/aghontpi"
}
],
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"babel-loader": "^8.2.1",
"css-loader": "^5.0.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
}
}