-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "mobx-react-table-grid",
"version": "2.0.1",
"description": "Easy to use and powerful react table-grid layout based on CSS-grid",
"license": "MIT",
"author": "ixrock",
"scripts": {
"dev": "webpack serve --mode development --open",
"build": "npm run build:clean && npm run build-lib && npm run build-types",
"build-lib": "NODE_ENV=production webpack --mode production",
"build-types": "tsc --project tsconfig-build-types.json",
"build:clean": "rimraf ./dist/",
"release-pack": "npm run build && npm pack ./dist",
"release-publish": "npm run build && npm publish ./dist"
},
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"types",
"*.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ixrock/mobx-react-table-grid.git"
},
"bugs": {
"url": "https://github.com/ixrock/mobx-react-table-grid/issues"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^10.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"fakerator": "^0.3.6",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"rimraf": "5.0.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"peerDependencies": {
"@types/lodash": "^4.14.194",
"@types/react": "^17 || ^18",
"@types/react-dom": "^17 || ^18",
"lodash": "^4.17.21",
"mobx": "^6.9.0",
"mobx-react": "^7.6.0",
"react": "^17 || ^18",
"react-dnd": "^15",
"react-dnd-html5-backend": "^15",
"react-dom": "^17 || ^18"
}
}