-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "mchord",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev -p 3005",
"build": "next build",
"start": "next start -p 3005",
"lint": "next lint",
"lint:fix": "next lint --fix",
"deploy": "npm run build && firebase deploy --only hosting"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.16",
"@mantine/hooks": "^6.0.16",
"@mantine/next": "^6.0.16",
"@tonaljs/tonal": "^4.8.0",
"dagre": "^0.8.5",
"next": "13.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"reactflow": "^11.7.0",
"recoil": "^0.7.7",
"typescript": "4.9.4"
},
"devDependencies": {
"@iconify/react": "^4.1.1",
"@types/dagre": "^0.7.48",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.10",
"eslint-plugin-unused-imports": "^2.0.0",
"next-intercept-stdout": "^1.0.1",
"prettier": "^2.8.8"
}
}