forked from jaredpalmer/formik-persist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.69 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
90
91
92
93
94
95
96
97
98
{
"name": "formik-persist",
"description": "Persist and rehydrate a Formik form",
"version": "1.1.0",
"license": "MIT",
"author": "Jared Palmer <[email protected]>",
"repository": "jaredpalmer/formik-persist",
"keywords": [
"formik",
"react",
"react-dom",
"form",
"validation",
"forms",
"localstorage",
"hoc"
],
"main": "dist/formik-persist.js",
"module": "dist/formik-persist.es6.js",
"typings": "dist/formik-persist.d.ts",
"files": ["dist"],
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "npm run test -- --watch",
"start": "cross-env NODE_ENV=development tsc-watch --onSuccess \"rollup -c\"",
"prebuild": "rimraf dist",
"build": "tsc && cross-env NODE_ENV=production rollup -c && rimraf compiled",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*' 'test/**/*'",
"addc": "all-contributors add",
"gen-docs": "all-contributors generate && doctoc README.md"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react-fast-compare": "^2.0.1"
},
"peerDependencies": {
"formik": "*",
"react": ">=15"
},
"resolutions": {
"@types/react": "16.4.7",
"@types/react-dom": "16.0.6"
},
"optionalDependencies": {},
"devDependencies": {
"@types/jest": "20.0.6",
"@types/lodash.debounce": "^4.0.3",
"@types/node": "8.0.19",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"all-contributors-cli": "^4.4.0",
"cross-env": "5.0.5",
"doctoc": "^1.3.0",
"formik": "^1.0.2",
"husky": "0.14.3",
"jest": "20.0.4",
"lint-staged": "4.0.2",
"prettier": "1.5.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "2.6.1",
"rollup": "0.45.2",
"rollup-plugin-commonjs": "8.1.0",
"rollup-plugin-filesize": "1.4.2",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-replace": "1.1.1",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-uglify": "2.0.1",
"ts-jest": "20.0.9",
"tsc-watch": "1.0.7",
"tslint": "5.5.0",
"tslint-react": "3.2.0",
"typescript": "2.9.2"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"semi": true
},
"jest": {
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/test/**/*.ts?(x)",
"<rootDir>/test/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
"moduleFileExtensions": ["ts", "tsx", "js", "json"]
}
}