-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.4 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
{
"name": "js-template",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^14.x",
"eslint-plugin-import": "^2.x",
"html-webpack-plugin": "^5.5.3",
"prettier": "^1.19.1",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"stylelint": "^13.x",
"stylelint-config-recommended": "^3.x",
"stylelint-config-standard": "^20.x",
"stylelint-csstree-validator": "^1.x",
"stylelint-scss": "^3.x",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --open --config webpack.dev.js",
"format": "npx prettier \"**/*.{html,js,json,md,json,yaml,yml,jsx}\" --write",
"format:check": "npx prettier \"**/*.{html,js,json,md,json,yaml,yml,jsx}\" --check",
"lint": "npx stylelint \"**/*.css\" --fix && npx eslint . --fix",
"lint:check": "npx stylelint \"**/*.css\" && npx eslint .",
"stylelint": "npx stylelint \"**/*.css\" --fix",
"stylelint:check": "npx stylelint \"**/*.css\"",
"eslint": "npx eslint . --fix",
"eslint:check": "npx eslint ."
},
"dependencies": {
"luxon": "^3.4.0"
}
}