-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.47 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
{
"name": "js-restaurant-page",
"version": "1.0.0",
"description": "Dynamically rendering a simple restaurant homepage using JavaScript DOM manipulation",
"main": "./dist",
"scripts": {
"dev": "vite --open",
"build": "vite build",
"format": "npx prettier --write \"**/*.{css,html,json,md,yaml,yml}\" --cache --cache-location node_modules/.cache/.prettiercache --ignore-path .gitignore",
"format:check": "npx prettier --check \"**/*.{css,html,json,md,yaml,yml}\" --cache --cache-location node_modules/.cache/.prettiercache --ignore-path .gitignore",
"lint": "npx eslint '**/*.js' --fix && npx stylelint '**/*.css' --fix",
"lint:check": "npx eslint '**/*.js' && npx stylelint '**/*.css'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bolah2009/js-restaurant-page.git"
},
"keywords": [
"JavaScript",
"DOM",
"Vite",
"ES6",
"Modules"
],
"author": "Bola Ahmed Buari",
"license": "ISC",
"bugs": {
"url": "https://github.com/bolah2009/js-restaurant-page/issues"
},
"homepage": "https://github.com/bolah2009/js-restaurant-page#readme",
"devDependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"eslint": "^9.0",
"eslint-config-airbnb-base": "^15.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.11.0",
"prettier": "^3.0",
"stylelint": "^16.0.0",
"stylelint-config-standard": "^36.0.0",
"vite": "^5.0.8"
}
}