-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.51 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
{
"name": "wp-skeleton",
"version": "1.0.0",
"description": "A skeleton repo as a starter for WordPress websites using Bedrock.",
"repository": "git@github.com:desaiuditd/wp-skeleton.git",
"author": "Udit Desai <desaiuditd@gmail.com>",
"license": "GPLv3",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --mode=production --config webpack.config.js",
"lint:js": "eslint .eslintrc.js .huskyrc.js .stylelintrc.js babel.config.js lint-staged.config.js postcss.config.js webpack.config.js web/app/mu-plugins",
"lint:js:fix": "eslint .eslintrc.js .huskyrc.js .stylelintrc.js babel.config.js lint-staged.config.js postcss.config.js webpack.config.js web/app/mu-plugins --fix",
"lint:scss": "stylelint \"web/app/mu-plugins/**/*.scss\" --syntax scss",
"lint:css": "stylelint \"web/app/mu-plugins/**/*.css\"",
"lint:style": "npm run lint:scss && npm run lint:css",
"lint": "npm run lint:js && npm run lint:style",
"lint:fix": "npm run lint:js:fix && npm run lint:style",
"start": "NODE_ENV=development webpack-dev-server --mode=development --config webpack.config.js"
},
"dependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"autoprefixer": "^9.8.8",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^2.1.1",
"classnames": "^2.3.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^5.2.7",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^9.0.0",
"postcss-loader": "^3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"styled-components": "^6.0.8",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.9.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"stylelint": "^15.11.0",
"stylelint-config-wordpress": "^17.0.0",
"stylelint-webpack-plugin": "^2.5.0",
"webpack-dev-server": "^4.15.1"
}
}