forked from alexeagleson/template-react-component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.13 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": "@theohagos/recoil-observer",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "1.0.11",
"keywords": [
"recoil",
"recoil state observer",
"recoil-devtool",
"recoil-logger",
"recoil devtool",
"recoil-observer",
"recoil observer",
"devtool"
],
"description": "A recoil state observer through Redux devtool",
"repository": "https://github.com/theohagos/recoil-observer.git",
"scripts": {
"rollup": "rollup -c",
"test": "jest",
"lint:fix": "eslint --config .eslintrc.js src/**/*.{js,jsx,ts,tsx} --format table --fix",
"prettier": "prettier --write \"**/*.tsx\""
},
"author": "theohagos",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/react": "^18.2.11",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"prettier": "2.5.1",
"react": "^18.2.0",
"recoil": "^0.7.7",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-postcss": "^4.0.1",
"sass": "^1.43.5",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "^0.7.7"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}