-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.61 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.61 KB
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
{
"name": "example-acorn-project",
"version": "1.0.0",
"description": "",
"private": true,
"author": {
"name": "Stefan Fisk",
"email": "contact@stefanfisk.com"
},
"license": "ISC",
"scripts": {
"build": "mix",
"watch": "mix watch",
"lint": "run-p --continue-on-error --print-label --silent lint:*",
"lint:css": "stylelint .",
"lint:js": "eslint .",
"lint:php": "./vendor/bin/phpcs -s .",
"fix": "run-p --continue-on-error --print-label --silent fix:*",
"fix:css": "stylelint --fix .",
"fix:js": "eslint --fix .",
"fix:php": "./vendor/bin/phpcbf -s ."
},
"dependencies": {
"tailwindcss": "^2.0.3"
},
"devDependencies": {
"@wordpress/dependency-extraction-webpack-plugin": "^3.0.1",
"@wordpress/eslint-plugin": "^8.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"laravel-mix": "^6.0.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
"prettier": "^2.2.1",
"stylelint": "^13.11.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-prettier": "^1.2.0"
}
}