-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.38 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
{
"name": "wordpress",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/nonfiction/wordpress.git"
},
"browserslist": [
">1%",
"last 4 versions",
"android 4",
"opera 12",
"not ie < 11"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"compat"
],
"rules": {
"compat/compat": "warn"
}
},
"stylelint": {
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {
"plugin/no-unsupported-browser-features": true
},
"defaultSeverity": "warning"
},
"scripts": {
"start": "webpack-dev-server --hide-modules --hot"
},
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@iconfu/svg-inject": "^1.2.3",
"@terwanerik/scrolltrigger": "^1.0.5",
"aos": "^2.3.4",
"assets-webpack-plugin": "^5.1.2",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.1.0",
"bootstrap-reboot": "^4.5.6",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eslint": "^7.29.0",
"eslint-plugin-compat": "^3.8.0",
"file-loader": "^6.1.0",
"flatpickr": "^4.6.9",
"friendly-errors-webpack-plugin": "^1.7.0",
"hamburgers": "^1.1.3",
"jquery": "^3.6.0",
"jquery-dropdown-datepicker": "^1.3.0",
"js-cookie": "^3.0.1",
"load-google-maps-api": "^2.0.2",
"macy": "^2.5.1",
"mini-css-extract-plugin": "^0.11.2",
"moment": "^2.29.1",
"moment-range": "^4.0.2",
"normalize.css": "^8.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.0.9",
"postcss-cli": "^8.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.2",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^5.1.1",
"postcss-safe-parser": "^5.0.1",
"react": "^16.13.1",
"slick-carousel": "^1.8.1",
"style-loader": "^1.2.1",
"stylelint": "^13.7.1",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"uuid": "^3.4.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"optionalDependencies": {
"fsevents": "^2.1.3"
}
}