-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
145 lines (145 loc) · 3.88 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "wfp-ui-reactjs",
"version": "0.3.24",
"main": "lib/index.js",
"files": [
"lib/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"author": "WFP RMTD Team",
"license": "MIT",
"engines": {
"node": ">=4"
},
"scripts": {
"buildb": "babel src -d lib",
"build": "webpack",
"watch": "webpack --config webpack.config.js -w",
"lint": "eslint src/**; exit 0",
"lint:watch": "esw -w src/**",
"prepublish": "npm run build",
"test": "jest",
"test-storybook": "storyshots",
"storybook": "start-storybook -p 5000",
"build-storybook": "build-storybook"
},
"jest": {
"modulePaths": [
"<rootDir>/src/"
],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json"
],
"moduleDirectories": [
"node_modules",
"bower_components"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/src/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/src/__mocks__/fileMock.js"
},
"setupFiles": [
"<rootDir>/src/jestTestsSetup.jsx"
]
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.11",
"@storybook/addon-info": "^3.3.11",
"@storybook/addon-knobs": "^3.3.11",
"@storybook/addon-links": "^3.3.11",
"@storybook/addon-options": "^3.3.14",
"@storybook/addon-storyshots": "^3.3.14",
"@storybook/addons": "^3.3.11",
"@storybook/react": "^3.3.11",
"autosuggest-highlight": "^3.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.5.2",
"browser-sync": "^2.2.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.7",
"dateformat": "^3.0.2",
"del": "^2.2.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-adapter-utils": "^1.2.0",
"es6-promise": "^4.1.1",
"eslint": "^4.7.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"eslint-watch": "^3.1.2",
"extract-text-webpack-plugin": "^3.0.0",
"flexboxgrid": "^6.3.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^21.2.1",
"lodash": "^4.17.4",
"main-bower-files": "^2.5.0",
"mathsass": "^0.10.1",
"moment": "^2.19.3",
"node-sass": "^4.5.3",
"polished": "^1.4.1",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"rc-menu": "git+https://github.com/Utzel-Butzel/menu.git",
"react-addons-test-utils": "^15.6.2",
"react-autosuggest": "^9.3.2",
"react-dates": "^15.5.3",
"react-dropzone": "^4.2.3",
"react-modal": "^3.0.4",
"react-month-picker": "git+https://github.com/mashony/react-month-picker.git",
"react-paginate": "^4.4.4",
"react-placeholder": "^2.0.0",
"react-portal": "^3.2.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-select": "^1.0.0-rc.10",
"react-table": "^6.7.6",
"react-test-renderer": "^15.6.2",
"react-tippy": "git://github.com/ZoharLiran/react-tippy.git#zl-add-guards",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"redux-form-website-template": "0.0.103",
"run-sequence": "^1.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"styled-components": "^2.1.2",
"webpack": "^3.6.0",
"wfp-ui": "git://github.com/wfp/ui#develop",
"wiredep": "^4.0.0"
},
"peerDependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true,
"jquery": true
},
"rules": {
"quotes": [
2,
"single"
]
}
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}