-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.76 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
{
"name": "po-12",
"version": "0.1.0",
"description": "A simple drum machine",
"main": "dist/index.js",
"files": ["dist"],
"license": "MIT",
"author": "jakeisnt",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build-package": "webpack --config webpack.config.js"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"dependencies": {
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@svgr/webpack": "^8.1.0",
"babel-plugin-react-css-modules": "^5.2.6",
"clsx": "^2.1.0",
"lucide-react": "^0.363.0",
"next": "14.1.4",
"sass": "^1.72.0",
"tailwind-merge": "^2.2.2",
"tone": "^14.7.77",
"url-loader": "^4.1.1"
},
"optionalDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-react": "^7.24.1",
"@ducanh2912/next-pwa": "^10.2.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"css-loader": "^6.10.0",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"install": "^0.13.0",
"node-sass": "^9.0.0",
"npm": "^10.5.0",
"postcss": "^8",
"postcss-scss": "^4.0.9",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"tailwindcss": "^3.3.0",
"ts-loader": "^9.5.1",
"typescript": "^5",
"webpack-cli": "^5.1.4"
}
}