-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (49 loc) · 1.42 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
{
"name": "@gsebdev/react-data-table",
"version": "1.0.9",
"description": "A simple data table react component, with sorting, filtering, and pagination functionalities.",
"author": "Sebastien GAULT",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"module": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gsebdev/react-data-table"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"core-js": "^3.30.0",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"svg-inline-loader": "^0.8.2",
"svg-url-loader": "^8.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"build": "del dist && set NODE_ENV=production && babel src/lib --out-dir dist --copy-files",
"dev": "set NODE_ENV=development && webpack-dev-server",
"build-demo": "set NODE_ENV=production && npx webpack --config webpack.config.js",
"deploy-demo": "gh-pages -d build"
}
}