-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
{
"name": "play-scales",
"version": "0.1.0",
"repository": {
"url": "[email protected]:giacomorebonato/play-scales.git"
},
"husky": {
"hooks": {
"pre-commit": "npm test --coverage true && npm run badges && git add 'README.md'"
}
},
"scripts": {
"badges": "istanbul-badges-readme",
"clean": "rimraf out",
"dev": "next dev",
"build": "next build && next export",
"lint": "prettier --write . && tsc && next lint",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@chakra-ui/icon": "^2.0.5",
"@chakra-ui/react": "^1.8.8",
"@emotion/css": "^11.9.0",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@tonaljs/tonal": "^4.6.5",
"@tonejs/midi": "^2.0.28",
"abcjs": "6.0.2",
"framer-motion": "6.2.9",
"immer": "^9.0.12",
"next": "^12.1.4",
"p5": "^1.4.1",
"query-string": "^7.1.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-icons": "^4.3.1",
"react-p5": "^1.3.27",
"react-use": "^17.3.2",
"styled-jsx": "^5.0.2",
"tone": "^14.7.77",
"use-immer": "^0.7.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.9.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/p5": "^1.4.2",
"@types/react": "18.0.1",
"@typescript-eslint/parser": "^5.19.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.4",
"husky": "^7.0.4",
"istanbul-badges-readme": "^1.8.1",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"type-fest": "^2.12.2",
"typescript": "^4.6.3"
},
"volta": {
"node": "14.17.1"
}
}