-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·55 lines (55 loc) · 1.77 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
{
"name": "give-moneris",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run development",
"development": "npx mix",
"watch": "npx mix watch",
"hot": "npx mix watch --hot",
"prod": "npm run production",
"production": "npx mix --production",
"build": "npm run production",
"lint": "npm run lint:js & npm run lint:scss & npm run lint:php",
"lint:js": "eslint src/**/resources/**/*.js",
"lint:js-fix": "eslint src/**/resources/**/*.js --fix",
"lint:php": "./vendor/bin/phpcs -v -s --colors",
"lint:php:fix": "./vendor/bin/phpcbf -v --colors",
"lint:textdomain": "node ./wp-textdomain.js",
"lint:scss": "stylelint src/**/resources/**/*.scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/impress-org/give-moneris.git"
},
"author": "GiveWP",
"license": "ISC",
"bugs": {
"url": "https://github.com/impress-org/give-moneris/issues"
},
"private": true,
"homepage": "https://github.com/impress-org/give-moneris#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@prettier/plugin-php": "^0.16.2",
"@wordpress/babel-plugin-import-jsx-pragma": "^2.7.0",
"@wordpress/eslint-plugin": "^7.2.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"eslint": "^7.8.1",
"laravel-mix": "^6.0.13",
"prettier": "^2.1.1",
"resolve-url-loader": "^3.1.0",
"sass": "^1.26.10",
"sass-loader": "^8.0.2",
"stylelint": "^13.7.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-wordpress": "^17.0.0",
"stylelint-prettier": "^1.1.2",
"wp-pot": "^1.6.3"
}
}