-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.53 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
{
"name": "waveform",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "concurrently -k -p \"[{name}]\" -n \"api,client\" -c \"yellow.bold,green.bold\" \"netlify dev\" \"npm run client:start\"",
"client:start": "nx serve",
"build": "nx build",
"test": "nx test",
"prettier:check": "prettier -l './apps/**/*.{ts,tsx}' './libs/**/*.{ts,tsx}'",
"prettier:fix": "prettier --write './apps/**/*.{ts,tsx}' './libs/**/*.{ts,tsx}'"
},
"private": true,
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@aws-sdk/client-s3": "^3.245.0",
"@aws-sdk/s3-request-presigner": "^3.245.0",
"@tanstack/react-query": "^4.18.0",
"@types/webmidi": "^2.0.6",
"antd": "^5.0.7",
"classnames": "^2.3.2",
"core-js": "^3.6.5",
"d3-scale": "^4.0.2",
"d3-shape": "^3.1.0",
"fft.js": "^4.0.4",
"hex-to-rgba": "^2.0.1",
"lodash": "^4.17.21",
"pretty-bytes": "^6.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.8.0",
"react-is": "18.2.0",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.5.7",
"styled-components": "5.3.5",
"tslib": "^2.3.0"
},
"devDependencies": {
"@netlify/functions": "^1.3.0",
"@nrwl/cli": "14.8.4",
"@nrwl/cypress": "14.8.4",
"@nrwl/eslint-plugin-nx": "14.8.4",
"@nrwl/jest": "14.8.4",
"@nrwl/linter": "14.8.4",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "^15.2.0",
"@nrwl/web": "^15.2.0",
"@nrwl/workspace": "14.8.4",
"@testing-library/react": "13.4.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-shape": "^3.1.0",
"@types/jest": "28.1.1",
"@types/lodash": "^4.14.188",
"@types/node": "16.11.7",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-is": "17.0.3",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-jest": "28.1.1",
"babel-plugin-styled-components": "1.10.7",
"concurrently": "^7.6.0",
"cypress": "^10.7.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"nx": "14.8.4",
"prettier": "^2.6.2",
"react-test-renderer": "18.2.0",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.8.2"
}
}