forked from cesko-digital/movapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "movapp",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:app": "next dev",
"dev:tsc": "npm run ts-watch",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"postbuild": "next-sitemap",
"ts-watch": "npx tsc --noEmit --incremental --watch --preserveWatchOutput"
},
"dependencies": {
"@fontsource/roboto": "^4.5.3",
"@fontsource/source-sans-pro": "^4.5.4",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@svgr/webpack": "^6.2.1",
"@types/jest": "^27.4.1",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"mark.js": "^8.11.1",
"markdown-link-extractor": "^3.0.2",
"marked": "^4.0.12",
"next": "12.1.0",
"next-i18next": "^10.5.0",
"next-plausible": "^3.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-mark.js": "^3.1.16",
"rehype-external-links": "^1.0.1",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"ts-jest": "^27.1.3",
"typescript-json-decoder": "^1.0.6",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@types/marked": "^4.0.2",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"autoprefixer": "^10.4.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"next-sitemap": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23",
"typescript": "4.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"."
]
}
}