-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.19 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.19 KB
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
{
"name": "video-cut-tool",
"version": "0.5.0",
"description": "A tool to edit videos",
"private": true,
"engines": {
"node": ">=14.9.3",
"npm": ">=6.2.0"
},
"type": "module",
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.0.0",
"@wikimedia/react.i18n": "^2.0.3",
"bootstrap": "^5.1.3",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"popup-tools": "^1.0.2",
"react": "^18.2.0",
"react-bootstrap": "^2.4.0",
"react-bootstrap-icons": "^1.8.4",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"sass": "^1.62.1",
"socket.io-client": "^4.5.1",
"vite": "^4.3.8"
},
"keywords": [
"VideoCutTool",
"Video Editing",
"Video Trimmer",
"Video Cropper"
],
"author": {
"name": "Gopa Vasanth",
"email": "gopavasanth1999@gmail.com"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/videocuttool/"
},
"homepage": "https://videocuttool.wmcloud.org",
"scripts": {
"prestart": "node ./server/config.js",
"start": "vite",
"start:docker": "docker-compose -f ./docker-compose.dev.yml up --build",
"build": "vite build",
"test": "vitest",
"postinstall": "npm --prefix ./server install",
"serve": "npm run serve --prefix server",
"dev": "cross-env NODE_ENV=development concurrently \"npm run start\" \"npm run serve\"",
"prd": "node ./server/index.js",
"server": "node ./server/index.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"eslint": "8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.6.0",
"jsdom": "^22.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.7.1",
"react-test-renderer": "^18.2.0",
"stylelint": "14.9.1",
"stylelint-config-standard": "26.0.0",
"stylelint-scss": "4.2.0",
"vitest": "^0.31.1"
}
}