-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "clip",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"l10n": "i18next",
"test": "jest"
},
"dependencies": {
"@ffmpeg/ffmpeg": "0.11.6",
"@ffmpeg/core": "0.11.0",
"classnames": "^2.3.1",
"i18next": "^21.6.3",
"next": "^13.0.7",
"react": "^18.2.0",
"react-dom": "^18.0.2",
"react-hook-form": "^7.22.5",
"react-hotkeys-hook": "^4.0.6",
"react-markdown": "^7.1.1",
"react-schemaorg": "^2.0.0",
"react-select": "^5.2.1",
"use-local-storage": "^2.2.6"
},
"devDependencies": {
"@types/react": "17.0.38",
"autoprefixer": "^10.4.0",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"i18next-parser": "^5.3.0",
"jest": "^27.4.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"schema-dts": "^1.0.0",
"tailwindcss": "^3.0.7",
"ts-jest": "^27.1.2",
"typescript": "4.5.4"
}
}