-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "deefour.me",
"version": "5.0.0",
"description": "My website.",
"scripts": {
"clean": "yarn del-cli {dist,.cache,.parcel-cache}",
"build": "yarn clean && yarn parcel build src/index.pug src/resume.pug",
"watch": "yarn parcel src/index.pug src/resume.pug",
"format": "yarn prettier --write '{*,src/**/*}.{js,ts,scss,css,json}'",
"check": "yarn tsc --noEmit --project .",
"lint": "yarn check && yarn eslint . --ext .ts && yarn stylelint '**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deefour/deefour.me.git"
},
"keywords": [
"deefour"
],
"author": "Jason Daly <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/deefour/deefour.me/issues"
},
"homepage": "https://deefour.me",
"devDependencies": {
"@parcel/transformer-pug": "2.8.3",
"@parcel/transformer-sass": "2.8.3",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"acorn": "^8.0.5",
"autoprefixer": "^10.0.1",
"del-cli": "^5.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"parcel": "^2.8.3",
"postcss": "^8.1.3",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"pug": "^3.0.0",
"sass": "^1.26.10",
"stylelint": "^14.16.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^6.1.0",
"typescript": "^4.0.2"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"modern-normalize": "^1.0.0"
}
}