-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.99 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": "@seij/yagrid",
"version": "0.1.22",
"description": "Yet another grid. A tool for building dynamic tables and grids with built-in editor and type registry. Targeted to management software.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"dependencies": {
"clsx": "^1.1.1",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/react": "^6.3.7",
"@types/jest": "^26.0.22",
"@types/lodash-es": "^4.17.4",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"purecss": "^2.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "^2.45.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"scripts": {
"build": "rollup --config",
"test": "jest",
"__publish": "npm publish --access public",
"storybook": "BROWSER=none start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seij-net/yagrid.git"
},
"keywords": [
"react",
"table",
"grid",
"javascript",
"typescript"
],
"author": "Seij",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/seij-net/yagrid/issues"
},
"homepage": "https://github.com/seij-net/yagrid#readme",
"prettier": {
"printWidth": 120
}
}