-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "storybook-addon-formik",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"transpile": "babel ./src --out-dir dist --source-maps",
"test": "jest ./src --coverage --passWithNoTests",
"lint": "eslint src --ext .js --ext .jsx",
"build": "npm run lint && npm run test && npm run transpile",
"start": "npm run transpile -- --watch",
"prepublish": "npm run transpile",
"prepush": "npm run lint && npm test"
},
"keywords": [
"react",
"storybook",
"storybook-addon",
"storybook-addon-formik",
"formik"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@storybook/addons": "^5.1.3",
"formik": "^1.5.7",
"react": "^16.8.6",
"react-json-view": "^1.19.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0"
}
}