-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.52 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
{
"name": "wordpress-boilerplate",
"private": true,
"version": "0.0.1",
"main": "src/scripts/commons.ts",
"license": "MIT",
"description": "Boilerplate for WordPress projects",
"author": {
"name": "Enrique Mora",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/enriquebeta6/"
},
"scripts": {
"start": "env-cmd webpack -w --mode=development",
"build": "env-cmd webpack --mode=production --bail",
"lint:scss": "stylelint '**/*.scss' --syntax scss",
"lint:scss:fix": "stylelint '**/*.scss' --syntax scss --fix"
},
"keywords": [
"wordpress",
"theme",
"php",
"mysql",
"xdebugger"
],
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@fortawesome/fontawesome-free": "^5.15.2",
"@types/classnames": "^2.2.11",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"autoprefixer": "^10.2.3",
"awesome-typescript-loader": "^5.2.1",
"branch-name-lint": "^1.4.1",
"browserslist": "^4.16.1",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"env-cmd": "^10.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mini-css-extract-plugin": "^1.3.4",
"node-sass": "^5.0.0",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^4.2.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^3.0.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.9.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"ts-loader": "^8.0.14",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "branch-name-lint branchNameLinter.json"
}
},
"lint-staged": {
"**/*.scss": [
"stylelint --syntax scss --fix"
]
}
}