-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.59 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
82
83
84
85
86
87
88
89
{
"name": "@vergiss/chooks",
"version": "0.5.0",
"description": "React hooks library",
"keywords": [
"chooks",
"react hooks"
],
"sideEffects": false,
"main": "lib/chooks.js",
"module": "es/index.js",
"types": "./lib/index.d.ts",
"unpkg": "dist/chooks.min.js",
"author": "divasatanica",
"license": "MIT",
"repository": "https://github.com/divasatanica/chooks",
"homepage": "https://github.com/divasatanica/chooks",
"scripts": {
"build:dll": "webpack --config ./webpack/webpack.config.dll.js",
"build": "gulp && webpack --config ./webpack/webpack.config.prod.js",
"dev": "webpack serve --config ./webpack/webpack.config.dev.js",
"test": "jest src/hooks",
"pub": "npm test && npm run build && npm publish --access public"
},
"files": [
"dist",
"lib",
"es",
"package.json",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@testing-library/react": "^11.1.2",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-loader": "^8.2.1",
"babel-preset-jest": "^26.6.2",
"css-loader": "^5.0.1",
"del": "^6.0.0",
"eslint": "^7.13.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-typescript": "^0.14.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^4.5.0",
"html-webpack-tags-plugin": "^2.0.17",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^5.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.14.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"dependencies": {
"core-js": "^3.7.0",
"intersection-observer": "^0.11.0"
},
"peerDependencies": {
"react": "^16.8.6"
}
}