-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
73 lines (73 loc) · 1.9 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
{
"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"
},
"dependencies": {
"@wikimedia/react.i18n": "^2.0.3",
"axios": "^0.27.2",
"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",
"react-scripts": "^5.0.1",
"socket.io-client": "^4.5.1"
},
"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": {
"start": "react-scripts start",
"start:docker": "docker-compose -f .\\docker-compose.dev.yml up --build",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"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": "npm run start:prod --prefix server",
"server": "node ./server/index.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"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",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.7.1",
"stylelint": "14.9.1",
"stylelint-config-standard": "26.0.0",
"stylelint-scss": "4.2.0"
}
}