-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 KB
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
{
"name": "react-d-form",
"version": "2.0.0",
"description": "React,React Native form builder",
"main": "index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"react-native",
"form"
],
"author": "Carlos Padilla",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-info": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"@storybook/react-native": "^5.3.18",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"husky": "^4.2.5",
"jest": "^25.1.0",
"lint-staged": "^10.1.3",
"prettier": "2.0.4",
"react-docgen-typescript-loader": "^3.7.1",
"react-native": "^0.62.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}