This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
{
"private": true,
"scripts": {
"dev": "parcel src/index.html --open --no-cache",
"prebuild": "rimraf dist/",
"build": "parcel build src/index.html --public-url .",
"lint:html": "prettier src/index.html",
"lint:style": "stylelint **/*.scss --ignore-path .gitignore",
"lint:js": "eslint --ext .ts --ignore-path .gitignore .",
"lint": "run-p lint:*",
"lintfix:html": "prettier --write src/index.html",
"lintfix:style": "npm run lint:style --fix",
"lintfix:js": "npm run lint:js --fix",
"lintfix": "run-p lintfix:*"
},
"lint-staged": {
"*.ts": "eslint",
"*.scss": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"prismjs": "^1.24.0",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@types/prismjs": "^1.16.1",
"@types/smoothscroll-polyfill": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^4.0.0",
"autoprefixer": "^9.8.5",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"parcel-plugin-imagemin": "^4.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sass": "^1.26.8",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^24.0.0",
"stylelint-scss": "^3.18.0",
"typescript": "^4.0.0"
}
}