-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
{
"name": "react-apollo-flexi-table",
"version": "0.2.1",
"description": "react flexible frozen header table and well combined with react-apollo",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "NODE_ENV=production babel src -d lib",
"start": "webpack serve --hot --config ./examples/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/travor20814/react-apollo-flexi-table.git"
},
"keywords": [
"React",
"Table",
"Apollo"
],
"author": "Travor Lee (Rytass)",
"license": "MIT",
"bugs": {
"url": "https://github.com/travor20814/react-apollo-flexi-table/issues"
},
"homepage": "https://github.com/travor20814/react-apollo-flexi-table#readme",
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@apollo/client": "^3.2.7",
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@hot-loader/react-dom": "^17.0.0",
"apollo-boost": "^0.4.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"clean-webpack-plugin": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.138.0",
"graphql": "^15.4.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"resolutions": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"husky": {
"hooks": {
"pre-commit": "git diff --diff-filter=d --cached --name-only | grep -E '.(js|jsx)$' | xargs npx eslint"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}