-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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": "genscapes",
"version": "0.9.0",
"private": false,
"author": "Vincent Reynaud <[email protected]>",
"homepage": "https://genscapes.netlify.app",
"description": "A browser app to generate drone music",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vincentreynaud/genscapes/"
},
"bugs": {
"url": "https://github.com/vincentreynaud/genscapes/issues"
},
"scripts": {
"start": "react-scripts start -p 3005",
"build": "CI=false && react-scripts build",
"predeploy": "yarn run build",
"deploy": "yarn run predeploy && gh-pages -b gh-pages -d build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@elemaudio/core-lite": "^0.11.0",
"@reduxjs/toolkit": "^1.9.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"@tonaljs/tonal": "^4.10.0",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-redux": "^7.2.9",
"react-scripts": "^5.0.1",
"reactstrap": "^9.2.2",
"redux": "^4.2.1",
"reselect": "^4.1.8",
"tone": "^15.0.4",
"waaclock": "^0.5.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/bootstrap": "^5.2.10",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"sass": "^1.77.8",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}