-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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": "street-fighter",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm install && npx simple-git-hooks",
"dev": "vite --host",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js .",
"lint:fix": "npm run lint -- --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"commitlint": "^17.6.5",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1",
"vite": "^4.3.9"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}