-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.36 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
76
77
78
79
80
81
{
"name": "react-very-simple-data-table",
"version": "0.0.3",
"description": "When all you want is a table",
"main": "dist/react-very-simple-data-table.js",
"scripts": {
"build:example": "NODE_ENV=development webpack",
"build": "NODE_ENV=production webpack",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"lint": "eslint . --ext .js,.jsx",
"pretty:fix": "prettier --write .",
"pretty": "prettier --check .",
"serve": "NODE_ENV=development webpack serve",
"start": "npm run build && npm run serve",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaocarmo/react-very-simple-data-table.git"
},
"keywords": [
"react",
"simple",
"data",
"table"
],
"author": "João Carmo",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaocarmo/react-very-simple-data-table/issues"
},
"homepage": "https://github.com/joaocarmo/react-very-simple-data-table#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@withshepherd/faker": "^5.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"core-js": "^3.1.4",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"husky": ">=6",
"jest": "^27.5.0",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}