-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.58 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.58 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "mediabits-editor",
"description": "Mediabits.io editor to create videos for audio clips",
"version": "0.1.0",
"private": false,
"main": "dist/server/index.js",
"engines": {
"node": "14"
},
"scripts": {
"start": "concurrently \"npm:dev:client\" \"npm:dev:server\"",
"dev:client": "next client -p 3000",
"dev:server": "babel server --out-dir dist/server --source-maps --watch",
"build:client": "cross-env next build client",
"build:server": "babel server --out-dir dist/server --source-maps",
"build": "npm run build:client && npm run build:server",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=production firebase serve --only functions,hosting",
"predeploy": "rimraf dist/ && npm run build",
"prestart": "npm run copy-encoder",
"prebuild": "npm run copy-encoder",
"deploy": "cross-env NODE_ENV=production firebase deploy --only functions:nextjsServer,hosting",
"copy-encoder": "ncp ./node_modules/@vincaslt/mp3/dist/mp3.wasm ./client/public/mp3.wasm",
"check-types": "npm run tsc"
},
"dependencies": {
"@headlessui/react": "0.3.2",
"@heroicons/react": "1.0.0",
"@mirco312312/react-imask": "6.0.6",
"@popperjs/core": "2.9.2",
"@sentry/nextjs": "6.13.2",
"@sentry/tracing": "6.13.2",
"@vincaslt/konva-elements": "1.0.0",
"@vincaslt/mp3": "1.0.3",
"audio-buffer-utils": "5.1.2",
"axios": "0.21.0",
"file-saver": "2.0.5",
"firebase": "9.1.0",
"firebase-admin": "9.11.1",
"firebase-functions": "3.15.7",
"js-cookie": "2.2.1",
"konva": "7.2.5",
"next": "11.1.2",
"nookies": "2.5.0",
"ramda": "0.27.1",
"react": "17.0.2",
"react-aspect-ratio": "1.0.46",
"react-color": "2.19.3",
"react-dom": "17.0.2",
"react-imask": "6.0.5",
"react-konva": "17.0.2-0",
"react-popper": "2.2.4",
"react-portal": "4.2.1",
"react-range": "1.8.3",
"react-toast-notifications": "2.5.1",
"react-use": "17.2.1",
"recoil": "0.2.0",
"recoil-persist": "2.4.0",
"subtitle": "4.1.0",
"subtitles": "0.0.5",
"tinycolor2": "1.4.2",
"unstated-next": "1.1.0",
"uuid": "8.3.2",
"wavesurfer.js": "4.2.0",
"webfontloader": "1.6.28"
},
"devDependencies": {
"@babel/cli": "7.13.14",
"@babel/core": "7.13.14",
"@babel/preset-env": "7.13.12",
"@tailwindcss/aspect-ratio": "0.2.0",
"@tailwindcss/forms": "0.3.2",
"@tailwindcss/typography": "0.4.0",
"@types/axios": "0.14.0",
"@types/file-saver": "2.0.1",
"@types/js-cookie": "2.2.6",
"@types/node": "14.14.10",
"@types/ramda": "0.27.32",
"@types/react": "17.0.0",
"@types/react-color": "3.0.4",
"@types/react-dom": "17.0.0",
"@types/react-portal": "4.0.2",
"@types/react-toast-notifications": "2.4.0",
"@types/tinycolor2": "1.4.2",
"@types/uuid": "8.3.0",
"@types/wavesurfer.js": "3.3.1",
"@types/webfontloader": "1.6.32",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"autoprefixer": "10.2.5",
"babel-eslint": "10.1.0",
"cross-env": "7.0.2",
"eslint": "7.14.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"ncp": "2.0.0",
"next-transpile-modules": "8.0.0",
"postcss": "8.2.8",
"postcss-import": "14.0.0",
"postcss-nested": "5.0.5",
"postcss-preset-env": "6.7.0",
"rimraf": "3.0.2",
"tailwindcss": "2.1.1",
"typescript": "4.4.3"
}
}