forked from bespoyasov/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.63 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
77
78
{
"name": "www",
"private": true,
"version": "7.0.0",
"description": "Source code for my blog.",
"scripts": {
"start": "npm run dev:en & npm run dev:ru & npm run dict:watch",
"secrete": "next telemetry disable",
"derive": "npm run dict:collect && npm run images:convert",
"build": "next build",
"build:en": "locale=en npm run build",
"build:ru": "locale=ru npm run build",
"export": "next export",
"cleanup": "node ./ops/cleanup",
"prestart": "npm run derive",
"prebuild": "npm run derive",
"postinstall": "npm run secrete && npm run derive && npm run git:hooks",
"postbuild": "npm run export && npm run cleanup && npm run rss:generate",
"git:hooks": "npx simple-git-hooks",
"dev:en": "locale=en next -p 2001",
"dev:ru": "locale=ru next -p 2002",
"lint:es": "npx eslint . --ext .ts,.tsx",
"lint:style": "npx stylelint '**/*.css'",
"test": "npx jest",
"test:dev": "npx jest --watch",
"test:changed": "npx jest --changedSince master",
"test:smoke": "node ./ops/smoke",
"qa:check": "npm run lint:es & npm run lint:style & npm test",
"dict:collect": "node ./ops/translation",
"dict:watch": "node ./ops/translation --watch",
"images:convert": "node ./ops/graphics",
"rss:generate": "node ./ops/rss",
"new:component": "npx hygen component new",
"new:page": "npx hygen page new",
"new:post": "npx hygen post new"
},
"author": "Alex Bespoyasov <bespoyasov@me.com>",
"repository": "bespoyasov/www",
"license": "CC BY-NC-SA 4.0",
"dependencies": {
"next": "^13.0.5",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@mavrin/remark-typograf": "^2.1.6",
"@next/eslint-plugin-next": "^13.0.5",
"@squoosh/lib": "^0.4.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"hygen": "^6.0.4",
"jest": "^29.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.0.0",
"next-mdx-remote": "^4.0.3",
"next-offline": "^5.0.3",
"prettier": "^2.3.2",
"rehype-autolink-headings": "^6.1.0",
"rehype-highlight": "^6.0.0",
"rehype-slug": "^5.0.0",
"remark-gfm": "^3.0.1",
"remark-unwrap-images": "^3.0.0",
"simple-git-hooks": "^2.8.0",
"stylelint": "^15.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.1",
"ts-jest": "^29.0.2",
"typescript": "^5.0.3"
}
}