-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
{
"name": "tabsfilterwidget",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack-cli --mode production",
"start": "webpack-serve --config ./webpack.config.js --mode development --open"
},
"babel": {
"presets": [
"airbnb",
"stage-2"
]
},
"serve": {
"content": [
"./dist",
"./public"
]
},
"author": "https://github.com/CarltonSoftware",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-preset-airbnb": "^2.6.0",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.1.0",
"cssimportant-loader": "^0.4.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-increase-specificity": "^0.6.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-obfuscator": "^0.17.0",
"webpack-serve": "^1.0.4"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-transition-group": "^2.5.2",
"react-datepicker": "^2.1.0",
"moment": "^2.24.0",
"react-select": "^2.4.1",
"underscore": "^1.9.1"
}
}