-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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": "coupe-video",
"private": true,
"packageManager": "yarn@3.0.2",
"version": "1.0.0-beta.1",
"license": "Apache-2.0",
"description": "WebAssembly-powered video cutter in the browser.",
"repository": "https://github.com/retrixe/coupe-video.git",
"author": "Ibrahim Ansari <ansari.ibrahim1@gmail.com>",
"scripts": {
"start": "next start",
"build": "next build",
"lint": "eslint .",
"dev": "next"
},
"dependencies": {
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.39.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.2",
"@types/node": "^16.9.1",
"@types/react": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"typescript": "^4.4.2"
}
}