-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "googlehomepageclone",
"version": "1.0.0",
"description": "A clone of Google Home Page",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npx eslint --fix && npx eslint",
"start": "npx live-server"
},
"lint-staged": {
"*.{js, jsx,ts,tsx, html,css}": [
"npx eslint --quiet --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/moe-dizzle/GoogleHomePageClone.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/moe-dizzle/GoogleHomePageClone/issues"
},
"homepage": "https://github.com/moe-dizzle/GoogleHomePageClone#readme",
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.25.0",
"@html-eslint/parser": "^0.25.0",
"eslint": "^9.7.0",
"eslint-plugin-css": "^0.10.0",
"globals": "^15.8.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.7",
"live-server": "^1.2.2",
"mrm": "^4.1.22"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}