-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "website",
"version": "1.0.0",
"repository": "https://github.com/sean-krail/website",
"author": "Sean Krail <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn clean && parcel build src/*.html",
"start": "yarn clean && parcel src/*.html",
"clean": "yarn rimraf .parcel-cache/ dist/",
"format": "eslint --fix src/ --ext .js,.jsx,.ts,.tsx && prettier --write src/",
"format-check": "eslint src/ --ext .js,.jsx,.ts,.tsx && prettier --check src/",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@fontsource/lato": "^5.0.18",
"@fontsource/material-icons": "^5.0.11",
"@fontsource/material-icons-outlined": "^5.0.11",
"@fontsource/raleway": "^5.0.16",
"@fontsource/roboto-mono": "^5.0.16",
"@parcel/compressor-brotli": "^2.11.0",
"@parcel/compressor-gzip": "^2.11.0",
"@parcel/config-default": "^2.11.0",
"@parcel/core": "^2.11.0",
"@parcel/transformer-image": "^2.11.0",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"babel-types": "^6.26.0",
"cssnano": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-parcel": "^1.10.6",
"eslint-plugin-import": "^2.29.1",
"http-proxy-middleware": "^2.0.6",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"node-gyp": "^10.0.1",
"normalize.css": "^8.0.1",
"parcel": "^2.11.0",
"pinst": "^3.0.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"sharp": "^0.31.1",
"typescript": "~5.3.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
],
"src/**/*.{css,html,ts}": [
"prettier --write"
]
},
"browserslist": "defaults",
"packageManager": "[email protected]"
}