-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
115 lines (115 loc) · 3.44 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
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
111
112
113
114
115
{
"name": "music-mastering-sample-app",
"version": "1.0.4",
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/dolbyio-samples/media-app-react-music-mastering"
},
"contributors": [
"Thomas Nguyen <[email protected]> (https://dolby.io)",
"Jay Appaji <[email protected]> (https://dolby.io)",
"Chris Wright <[email protected]> (https://dolby.io)",
"Jim Fan <[email protected]> (https://dolby.io)",
"Fabien Lavocat <[email protected]> (https://dolby.io)"
],
"scripts": {
"build:all": "nx affected:build --all",
"start:mm-sample": "nx run mm-sample:serve",
"start:mm-server": "nx run mm-server:serve"
},
"husky": {
"hooks": {
"pre-commit": "yalc check"
}
},
"private": true,
"dependencies": {
"@dolbyio/dolbyio-rest-apis-client": "^3.5.3",
"@dolbyio/media-uikit-react": "^2.0.0",
"@emotion/react": "11.5.0",
"@emotion/styled": "11.3.0",
"@reduxjs/toolkit": "1.6.2",
"@rollup/plugin-commonjs": "14.0.0",
"axios": "^0.27.2",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"debounce": "^1.2.1",
"express": "^4.18.1",
"ffmpeg.js": "^4.2.9003",
"howler": "^2.2.3",
"react": "17.0.2",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "17.0.2",
"react-hook-form": "^7.29.0",
"react-is": "17.0.2",
"react-redux": "7.2.5",
"react-router": "^5.2.1",
"react-router-dom": "5.3.0",
"regenerator-runtime": "0.13.7",
"throttle-debounce": "^5.0.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/preset-typescript": "7.12.13",
"@emotion/babel-plugin": "11.3.0",
"@nrwl/cli": "13.8.3",
"@nrwl/cypress": "13.8.4",
"@nrwl/eslint-plugin-nx": "13.8.3",
"@nrwl/express": "^14.5.4",
"@nrwl/jest": "13.8.3",
"@nrwl/js": "13.8.3",
"@nrwl/linter": "13.8.3",
"@nrwl/node": "14.5.4",
"@nrwl/react": "^13.8.4",
"@nrwl/tao": "13.8.3",
"@nrwl/web": "13.8.4",
"@nrwl/workspace": "13.8.3",
"@svgr/rollup": "^6.2.1",
"@svgr/webpack": "^6.3.1",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@types/express": "4.17.13",
"@types/howler": "^2.2.7",
"@types/jest": "27.0.2",
"@types/node": "16.11.7",
"@types/react": "17.0.30",
"@types/react-dom": "17.0.9",
"@types/react-is": "17.0.2",
"@types/react-router-dom": "5.3.1",
"@types/styled-components": "5.1.15",
"@types/throttle-debounce": "^5.0.0",
"@types/wavesurfer.js": "^6.0.3",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "~5.10.0",
"@typescript-eslint/parser": "~5.10.0",
"babel-jest": "27.2.3",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.10.7",
"cypress": "^9.1.0",
"eslint": "~8.7.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "^8.0.1",
"jest": "27.2.3",
"prettier": "^2.5.1",
"react-test-renderer": "17.0.2",
"redux-devtools-extension": "^2.13.9",
"ts-jest": "27.0.5",
"ts-node": "~10.8.0",
"typescript": "~4.5.2",
"url-loader": "^3.0.0",
"yalc": "^1.0.0-pre.53"
}
}