-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 907 Bytes
/
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
{
"name": "alien-clicker",
"version": "1.0.0",
"description": "clicker game",
"type": "module",
"scripts": {
"dev": "http-server -o index.html",
"lint:fix": "eslint --ext .js --fix .",
"stylelint:fix": "stylelint --fix **/*.css",
"prettier:fix": "prettier --write **/*.html",
"format": "npm run stylelint:fix && npm run lint:fix && npm run prettier:fix",
"prepare": "husky install"
},
"author": "Kate",
"license": "ISC",
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"husky": "^8.0.2",
"prettier": "^2.7.1",
"stylelint": "^14.14.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-prettier": "^2.0.0"
}
}