-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
90 lines (90 loc) · 2.53 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"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",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"postbuild": "yarn generate-pdfs && next-sitemap",
"ts-watch": "npx tsc --noEmit --incremental --watch --preserveWatchOutput",
"generate-pdfs": "ts-node --skip-project utils/exportPdfs.ts",
"ci:build": "next build && next-sitemap"
},
"dependencies": {
"@fontsource/roboto": "^4.5.3",
"@fontsource/source-sans-pro": "^4.5.4",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@svgr/webpack": "^6.2.1",
"animejs": "^3.2.1",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.5.0",
"i18next": "^22.3.0",
"jest": "^27.5.1",
"jotai": "^2.1.1",
"mark.js": "^8.11.1",
"markdown-link-extractor": "^3.0.2",
"marked": "^4.0.12",
"next": "^13.3.0",
"next-i18next": "13.0.0",
"next-plausible": "^3.7.2",
"puppeteer": "^18.0.5",
"ramda": "^0.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.1",
"react-icons": "^4.3.1",
"react-mark.js": "^9.0.7",
"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",
"zustand": "^4.3.2"
},
"devDependencies": {
"@types/animejs": "^3.1.7",
"@types/jest": "^27.5.2",
"@types/marked": "^4.0.2",
"@types/node": "17.0.21",
"@types/node-fetch": "^2.6.2",
"@types/ramda": "^0.29.1",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"autoprefixer": "^10.4.2",
"cypress": "^12.17.4",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.7",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"next-sitemap": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.7",
"prettier": "^2.8.1",
"tailwindcss": "^3.0.23",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"."
]
}
}