-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
65 lines (65 loc) · 2.59 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
{
"name": "newspack",
"version": "5.6.0",
"description": "The Newspack plugin. https://newspack.com",
"bugs": {
"url": "https://github.com/Automattic/newspack-plugin/issues"
},
"homepage": "https://newspack.com",
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@testing-library/react": "^12.1.4",
"@types/qs": "^6.9.16",
"@types/react": "^17.0.75",
"@wordpress/browserslist-config": "^6.10.0",
"eslint": "^8.57.0",
"lint-staged": "^15.2.10",
"newspack-scripts": "^5.5.2",
"postcss-scss": "^4.0.9"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"lint-staged": {
"*.scss": "npm run lint:scss:staged",
"*.(js|jsx)": "npm run lint:js:staged",
"*.(ts|tsx)": "npm run typescript:check",
"*.php": "npm run lint:php:staged"
},
"scripts": {
"cm": "newspack-scripts commit",
"semantic-release": "newspack-scripts release --files=newspack.php",
"clean": "rm -rf dist",
"build": "npm run clean && newspack-scripts wp-scripts build",
"start": "npm ci --legacy-peer-deps && npm run watch",
"watch": "npm run clean && newspack-scripts wp-scripts start",
"test": "newspack-scripts test",
"lint": "npm run lint:scss && npm run lint:js",
"lint:js": "newspack-scripts wp-scripts lint-js '**/{src,includes}/**/*.{js,jsx,ts,tsx}'",
"lint:js:staged": "newspack-scripts wp-scripts lint-js --ext .js,.jsx,.ts,.tsx",
"fix:js": "newspack-scripts wp-scripts lint-js --fix '**/{src,includes}/**/*.{js,jsx,ts,tsx}'",
"format:js": "newspack-scripts wp-scripts format '**/{src,includes}/**/*.{js,jsx,ts,tsx}'",
"lint:php": "./vendor/bin/phpcs",
"lint:php:staged": "./vendor/bin/phpcs --filter=GitStaged",
"fix:php": "./vendor/bin/phpcbf",
"lint:scss": "newspack-scripts wp-scripts lint-style '**/*.scss' --customSyntax postcss-scss",
"lint:scss:staged": "newspack-scripts wp-scripts lint-style --customSyntax postcss-scss",
"format:scss": "newspack-scripts wp-scripts lint-style '**/{src,includes}/**/*.scss' --customSyntax postcss-scss --fix",
"typescript:check": "newspack-scripts typescript-check",
"release": "npm run build && npm run semantic-release",
"release:archive": "rm -rf release && mkdir -p release && rsync -r . ./release/newspack-plugin --exclude-from='./.distignore' && cd release && zip -r newspack-plugin.zip newspack-plugin"
},
"dependencies": {
"classnames": "^2.5.1",
"colord": "^2.9.3",
"deep-map-keys": "^2.0.1",
"js-cookie": "^3.0.5",
"moment": "^2.30.1",
"moment-range": "^3.1.1",
"qs": "^6.13.0",
"react-daterange-picker": "^2.0.1",
"react-router-dom": "^5.3.4",
"recursive-copy": "^2.0.14",
"tachyons": "^4.12.0"
}
}