forked from studiopress/atomic-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.03 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
{
"name": "atomic-blocks",
"version": "2.7.0",
"description": "A beautiful collection of handy Gutenberg blocks to help you get started with the new WordPress editor.",
"author": "Atomic Blocks",
"license": "GPL-2.0-or-later",
"keywords": [
"blocks",
"gutenberg",
"layouts",
"block editor",
"templates"
],
"homepage": "https://atomicblocks.com",
"repository": "https://github.com/studiopress/atomic-blocks",
"bugs": "https://github.com/studiopress/atomic-blocks/issues",
"private": true,
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-es2016": "^7.0.0-beta.53",
"@babel/preset-react": "^7.8.3",
"@wordpress/babel-plugin-makepot": "^2.1.3",
"@wordpress/e2e-test-utils": "^4.3.0",
"@wordpress/eslint-plugin": "^4.0.0",
"@wordpress/scripts": "^7.1.2",
"acorn": "^7.1.1",
"npm-run-all": "^4.1.5",
"@wordpress/i18n": "^1.2.3",
"autoprefixer": "^9.7.4",
"classnames": "^2.2.6",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"lodash": "^4.17.15",
"memize": "^1.0.5",
"md5": "^2.2.1",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"re-resizable": "^4.11.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-lazy-load": "^3.0.13",
"sass-loader": "^8.0.2",
"webpack": "^4.42.0"
},
"scripts": {
"start": "wp-scripts start",
"build": "npm-run-all makepot build-assets",
"build-assets": "wp-scripts build",
"makepot": "wp i18n make-pot . languages/atomic-blocks.pot --exclude=config,node_modules,scripts,vendor,dist/blocks.build.js",
"lint:css": "wp-scripts lint-style",
"lint:css:src": "wp-scripts lint-style 'src/**/*.css'",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"test:e2e": "wp-scripts test-e2e",
"test:e2e:help": "wp-scripts test-e2e --help",
"test:unit:watch": "wp-scripts test-unit-js --watch"
},
"babel": {
"presets": [
[
"@babel/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": [
[
"@babel/plugin-proposal-class-properties"
],
[
"@babel/plugin-proposal-object-rest-spread",
{
"useBuiltIns": true
}
],
[
"@babel/transform-react-jsx",
{
"pragma": "wp.element.createElement"
}
],
[
"@babel/plugin-transform-runtime",
{
"helpers": false,
"regenerator": true
}
]
]
}
}