-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.59 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
{
"name": "dropper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsc --project worker/tsconfig.json --watch & nodemon",
"build": "npm run build-worker && next build && tsc --project tsconfig.server.json --listEmittedFiles",
"build-worker": "tsc --project worker/tsconfig.json --listEmittedFiles",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.10.5",
"@peculiar/webcrypto": "^1.1.2",
"@sentry/browser": "^5.20.1",
"@sentry/node": "^5.19.2",
"@typegoose/typegoose": "^7.3.0",
"@types/bytes": "^3.1.0",
"@uppy/companion": "^2.0.0-alpha.8",
"@uppy/core": "^1.12.0",
"@uppy/react": "^1.10.0",
"@uppy/tus": "^1.7.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"babel-plugin-transform-typescript-metadata": "^0.3.0",
"base64url": "^3.0.1",
"block-stream2": "^2.0.0",
"busboy": "^0.3.1",
"bytes": "^3.1.0",
"chunking-streams": "0.0.8",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"ffmpeg-static": "^4.2.6",
"ffprobe-static": "^3.0.0",
"hbs": "^4.1.1",
"http-proxy-middleware": "^1.0.5",
"idb": "^5.0.4",
"less": "^3.12.0",
"mime-types": "^2.1.27",
"mongoose": "^5.9.24",
"morgan": "^1.10.0",
"next": "^9.4.4",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"parse-filepath": "^1.0.2",
"player.js": "^0.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rsuite": "^4.8.0",
"webdav": "^3.3.0",
"workbox-window": "^5.1.3"
},
"devDependencies": {
"@types/busboy": "^0.2.3",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/ffprobe-static": "^2.0.0",
"@types/mime-types": "^2.1.0",
"@types/mongoose": "^5.7.32",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/parse-filepath": "^1.0.0",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/workbox-sw": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}