-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.48 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "etozhkirill.github.io",
"version": "1.0.0",
"description": "My personal blog",
"main": "index.js",
"scripts": {
"dev": "PORT=8080 next dev",
"build": "node ./scripts/prebuild.js && next build && next export -o build/ && node ./scripts/postbuild.js",
"start": "serve build",
"test": "jest",
"lint": "npm-run-all 'lint:*' --parallel --continue-on-error --aggregate-output",
"lint-fix": "npm-run-all 'lint:* -- --fix' --parallel --continue-on-error --aggregate-output",
"lint:ts": "eslint './src/**/*.{ts,tsx}'",
"lint:scss": "stylelint './src/**/*.scss'",
"check-types": "tsc --noEmit",
"prepare": "is-ci || husky install"
},
"keywords": [],
"author": "Kirill Kvashonin <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"classnames": "^2.2.6",
"dayjs": "^1.10.7",
"disqus-react": "^1.1.2",
"highlight.js": "^11.2.0",
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer": "^8.32.1",
"react-lines-ellipsis": "^0.15.0",
"react-transition-group": "^4.4.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-transition-group": "^4.4.3",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-jest": "^27.2.1",
"cpy": "^8.1.2",
"eslint": "^7.31.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gray-matter": "^4.0.3",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"jest": "^27.2.1",
"lint-staged": "^11.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rehype-highlight": "^5.0.0",
"rehype-raw": "^6.1.0",
"rehype-stringify": "^9.0.2",
"remark-highlight.js": "^7.0.1",
"remark-parse": "^10.0.0",
"remark-rehype": "^10.0.0",
"sass": "^1.42.1",
"serve": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.20.1",
"typescript": "^4.3.5",
"unified": "^10.1.0"
}
}