-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.69 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.69 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
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
{
"name": "react-use-table-editor-demo",
"author": "Martijn Schrage (https://www.oblomov.com)",
"version": "0.1.1",
"description": "Demo of react-use-table-editor (see ./packages/react-use-table-editor/)",
"repository": {
"type": "git",
"url": "git+https://github.com/Oblosys/react-use-table-editor.git"
},
"scripts": {
"start": "react-app-rewired start",
"eject": "react-app-rewired eject",
"build": "cd packages/react-use-table-editor && npm run build",
"build-watch": "cd packages/react-use-table-editor && npm run build-watch",
"clean": "cd packages/react-use-table-editor && npm run clean",
"link": "npm link ./packages/react-use-table-editor",
"lint-check": "eslint --cache .",
"lint-fix": "npm run lint-check -- --fix",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run prettier-check && npm run lint-check && npm run build && npm test",
"prettier-check": "prettier -l '**/*.{ts,tsx,json,md,js,scss,yml}'",
"prettier-fix": "npm run prettier-check -- --write",
"test": "cd packages/react-use-table-editor && npm run test",
"test-watch": "cd packages/react-use-table-editor && npm run test-watch"
},
"keywords": [
"react",
"table",
"typed",
"hooks",
"editing",
"dirty-tracking"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Oblosys/react-use-table-editor/issues"
},
"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"
]
},
"dependencies": {
"faker": "^5.5.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use-table-editor": "0.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.3.0",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "4.33.0",
"customize-cra": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "25.0.1",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"react-app-rewired": "^2.1.8",
"react-scripts": "4.0.3",
"ts-jest": "^26.5.6",
"typescript": "^4.4.3"
}
}