forked from polemius/recoil-persist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 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
82
83
84
85
86
87
{
"name": "recoil-persist",
"version": "2.5.0",
"description": "Package for recoil to persist and rehydrate store",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "polemius/recoil-persist",
"author": "Ivan Menshykov <[email protected]>",
"license": "MIT",
"keywords": [
"state",
"react",
"recoil",
"store"
],
"scripts": {
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json)\"",
"lint": "eslint --ignore-path .gitignore .",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"test": "jest",
"build": "tsc",
"validate": "yarn lint && yarn check-format && yarn test",
"start": "parcel serve --cache-dir test/demo/.cache -d test/demo/dist test/demo/index.html --open",
"predeploy": "rm -rf test/demo/dist && parcel build -d test/demo/dist test/demo/index.html --public-url /recoil-persist",
"deploy": "gh-pages -d test/demo/dist"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@size-limit/preset-small-lib": "^4.9.2",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"clean-publish": "^1.1.8",
"dual-publish": "^1.0.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.22.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"size-limit": "^4.9.2",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"recoil": "^0.1.2"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "354 B"
}
],
"jest": {
"verbose": true,
"transform": {
"^.+\\.js$": "babel-jest"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
},
"browserslist": [
"last 3 chrome versions",
"last 3 opera versions",
"last 3 firefox versions",
"last 3 safari versions"
]
}