-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
103 lines (103 loc) · 2.45 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
{
"name": "gutenberg-forms-cgb-guten-block",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js"
},
"dependencies": {
"@nivo/bar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@wordpress/components": "^23.1.0",
"autoprefixer": "^7.2.4",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.1",
"babel-preset-cgb": "^1.7.0",
"cgb-dev-utils": "^1.6.0",
"chalk": "^2.3.0",
"cross-env": "^5.0.1",
"cross-spawn": "^5.1.0",
"css-loader": "^6.5.1",
"eslint": "^4.15.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-wordpress": "^0.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"filesize": "^3.5.11",
"fs-extra": "^5.0.0",
"gzip-size": "^4.1.0",
"inquirer": "^5.0.0",
"lodash": "^4.17.21",
"node-sass": "^4.7.2",
"ora": "^1.3.0",
"pikaday": "^1.8.0",
"postcss": "^8.4.6",
"postcss-loader": "^2.0.10",
"prettier": "^2.8.1",
"raw-loader": "^0.5.1",
"react": "^16.3.1",
"react-redux": "^7.2.6",
"react-router": "^5.2.1",
"react-router-dom": "^5.2.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"resolve-pkg": "^1.0.0",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.0",
"style-loader": "^0.23.1",
"unitize": "0.0.3",
"update-notifier": "^2.3.0",
"webpack": "^3.1.0",
"wp-cli": "0.0.5"
},
"devDependencies": {
"@wordpress/scripts": "^25.1.0"
},
"babel": {
"presets": [
[
"env",
{
"modules": false,
"targets": {
"browsers": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 1 Android version",
"last 1 ChromeAndroid version",
"ie 11"
]
}
}
]
],
"plugins": [
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
],
[
"transform-react-jsx",
{
"pragma": "wp.element.createElement"
}
],
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true
}
]
]
}
}