-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.79 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
{
"name": "react-modele",
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-proposal-class-properties": "*",
"@babel/plugin-proposal-object-rest-spread": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"autoprefixer": "*",
"babel-eslint": "*",
"babel-loader": "^8.0.6",
"css-loader": "*",
"eslint": "*",
"eslint-config-airbnb": "*",
"eslint-import-resolver-webpack": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsx-a11y": "*",
"eslint-plugin-react": "*",
"file-loader": "*",
"html-webpack-plugin": "*",
"ignore-styles": "*",
"mini-css-extract-plugin": "*",
"node-sass": "*",
"optimize-css-assets-webpack-plugin": "*",
"postcss": "*",
"postcss-loader": "*",
"sass-loader": "*",
"style-loader": "*",
"stylelint": "*",
"stylelint-config-recommended": "*",
"uglifyjs-webpack-plugin": "*",
"webpack": "*",
"webpack-cli": "*",
"webpack-dev-server": "*"
},
"scripts": {
"start": "webpack-dev-server",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist node_modules",
"build:dev": "NODE_ENV=development webpack",
"build:dev:win": "set NODE_ENV=development && webpack",
"build:prod": "NODE_ENV=production webpack --mode production",
"build:prod:win": "set NODE_ENV=production && webpack --mode production",
"test": "mocha --require tests/.setup.js tests/**/*.test.js",
"test:watch": "mocha --watch --require tests/.setup.js tests/**/*.test.js",
"save-deps": "node updateDeps.js"
},
"dependencies": {
"@babel/register": "^7.7.7",
"@date-io/date-fns": "^2.0.1",
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.39",
"@material-ui/pickers": "^3.2.10",
"acorn": "^7.1.1",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.19.1",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"date-fns": "^2.9.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"font-family-system-ui": "^0.0.1",
"kind-of": "^6.0.3",
"leaflet": "^1.6.0",
"minimist": "^1.2.5",
"mocha": "^7.0.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-google-autocomplete": "^1.1.2",
"react-google-places-autocomplete": "^1.6.2",
"react-icons": "^3.8.0",
"react-leaflet": "^2.6.1",
"react-places-autocomplete": "^7.2.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-router-hash-link": "^1.2.2",
"react-slick": "^0.25.2",
"redux": "^4.0.5",
"serialize-javascript": "^3.0.0",
"slugify": "^1.3.6",
"system-ui": "^1.0.0",
"typeface-poppins": "^0.0.72"
}
}