This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·105 lines (105 loc) · 3.47 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
{
"name": "benenson",
"description": "Named after the founder of the human rights group, Amnesty International, Benenson is an open-source WordPress theme built using Gutenberg",
"author": "Big Big Creative",
"private": true,
"devDependencies": {
"@wordpress/babel-plugin-makepot": "^2.0.1",
"@wordpress/i18n": "^1.2.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"exports-loader": "^0.6.4",
"expose-loader": "^0.7.3",
"node-neat": "^2.0.0-beta.0",
"sassdoc-theme-neat": "0.0.2"
},
"dependencies": {
"autoprefixer": "^7.1.4",
"browser-sync": "^2.18.13",
"classnames": "^2.2.6",
"core-js": "^2.5.1",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"dotenv": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"flickity": "^2.1.2",
"flickity-as-nav-for": "^2.0.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-awspublish": "^3.3.0",
"gulp-changed": "^3.1.0",
"gulp-concat": "^2.6.1",
"gulp-filter": "^5.0.1",
"gulp-header": "^1.8.9",
"gulp-imagemin": "^3.3.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-svg-sprites": "^4.1.2",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-webserver": "^0.9.1",
"imagemin-pngquant": "^5.0.1",
"jest": "^21.2.1",
"lodash-es": "^4.17.10",
"memize": "^1.0.5",
"node-normalize-scss": "^3.0.0",
"node-notifier": "^5.0.2",
"postcss-banner": "^3.0.0",
"postcss-ms-unit": "^0.0.2",
"postcss-pseudo-class-enter": "^3.0.1",
"postcss-pxtorem": "^4.0.1",
"postcss-reporter": "^5.0.0",
"postcss-scss": "^1.0.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-select": "^2.0.0",
"sass-module-importer": "^1.4.0",
"sass-mq": "^3.3.2",
"sassdoc": "^2.3.0",
"sassdoc-theme-flippant": "^0.1.0",
"strip-ansi": "^4.0.0",
"stylelint": "^8.1.1",
"stylelint-scss": "^2.1.0",
"webpack": "^3.6.0"
},
"scripts": {
"lint": "yarn lint-scripts && yarn lint-styles && yarn lint-php && yarn lint-shell",
"lint-php": "$(composer config -g home)/vendor/bin/phpcs .",
"lint-scripts": "./node_modules/.bin/eslint ./src/",
"lint-styles": "./node_modules/.bin/stylelint \"src/**/*.scss\"",
"lint-shell": "type shellcheck > /dev/null 2>&1 && shellcheck ./bin/*.sh",
"test": "./node_modules/.bin/jest",
"build": "export \"${NODE_ENV:-production}\"; gulp --production",
"watch": "export \"${NODE_ENV:-production}\"; gulp watch --production",
"lang": "npx pot-to-php block-languages/benenson-blocks.pot includes/block-translations.php benenson && ./bin/refresh-lang.sh"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
},
"globals": {
"__DEV__": true,
"__TEST__": true
},
"verbose": true
}
}