-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·112 lines (112 loc) · 2.7 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "a-dope-boilerplate",
"description": "A boilerplate Express.js project that automatically reformats your code using Prettier and Eslint.",
"version": "0.5.4",
"author": "David Hull <[email protected]>",
"license": "MIT",
"keywords": [
"boilerplate",
"prettier",
"webpack",
"express",
"eslint",
"format",
"javascript",
"pm2",
"web",
"app",
"node.js",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/dhull33/Express-Webpack-Prettier-Boilerplate"
},
"bugs": {
"url": "https://github.com/dhull33/Express-Webpack-Prettier-Boilerplate/issues"
},
"main": "bin/cli.js",
"bin": {
"adp": "./bin/cli.js"
},
"preferGlobal": true,
"scripts": {
"start": "bin/cli.js",
"prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"debug": "^4.3.4",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/node": "^7.22.19",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.20",
"@babel/register": "^7.22.15",
"ajv": "^8.12.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-manifest-plugin": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
],
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"babel": {
"presets": [
[
"airbnb",
{
"targets": {
"node": "19.6.0"
}
},
"@babel/preset-env"
]
],
"plugins": [
"babel-plugin-transform-class-properties"
]
}
}