forked from Kozea/formol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.75 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "formol",
"version": "2.5.12-alpha.2",
"description": "An opiniated react form framework.",
"main": "lib/formol.js",
"module": "src/index.js",
"repository": "https://github.com/Kozea/formol",
"author": "Florian Mounier",
"license": "MIT",
"scripts": {
"build": "rimraf lib && webpack",
"lint": "eslint src stories storybook-addon-theme/src/* test",
"fix": "prettier --write **/*.{js,jsx}",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prepublish": "npm run build",
"storybook": "start-storybook -p 9001",
"storybook-debug": "node --inspect-brk ./node_modules/.bin/start-storybook -p 9001",
"storybook-deploy": "storybook-to-ghpages"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"modulePaths": [
"<rootDir>/src"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css|sass)$": "<rootDir>/test/styleMock.js"
},
"setupFiles": [
"<rootDir>/test/setup.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/i18n/*"
],
"testURL": "http://localhost/"
},
"pre-commit": "lint,test",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@storybook/addon-knobs": "^5.0.11",
"@storybook/addon-storyshots": "^5.0.11",
"@storybook/addon-storysource": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"@storybook/storybook-deployer": "^2.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-plugin-add-react-static-displayname": "^0.0.2",
"babel-plugin-dynamic-import-node": "^2.1.0",
"coveralls": "^3.0.3",
"css-loader": "^2.1.1",
"date-fns": "2.0.0-alpha.27",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-react": "^7.13.0",
"import-sort": "^6.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.6.0",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"pre-commit": "^1.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-syntax-highlighter": "^10.2.1",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.1.0",
"scudd": "^0.0.1",
"storybook4-state": "^1.5.3",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.2"
},
"files": [
"lib/",
"src/"
],
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "module"
}
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"bemboo": "^2.0.0",
"deep-equal": "^1.0.1",
"draft-js": "^0.10.5",
"draftjs-to-html": "^0.8.4",
"html-to-draftjs": "^1.4.0",
"js-search": "^1.4.2",
"react-day-picker": "^7.3.0",
"react-draft-wysiwyg": "^1.13.2",
"react-dropzone": "^10.1.4",
"react-icons": "^3.6.1",
"react-select": "^2.4.3",
"react-window": "^1.8.1",
"zxcvbn": "^4.4.2"
},
"peerDependencies": {
"date-fns": "^2.0.0-alpha.25",
"react": "^16.x.x",
"react-dom": "^16.x.x",
"react-icons": "^3.x.x"
}
}