-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.19 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
{
"name": "audio-node-dragger",
"version": "1.0.31",
"description": "Connect audio nodes by dragging them",
"files": [
"src"
],
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "NODE_ENV=production webpack build",
"test": "jest"
},
"keywords": [
"audio",
"node",
"filter",
"drag"
],
"homepage": "https://calinalexandru.github.io/audio-diagrams/",
"author": "Alexandru Calin <[email protected]>",
"license": "MIT",
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@immerx/observable": "^0.1.0",
"@immerx/state": "^3.2.2",
"css-loader": "^6.8.1",
"immer": "^9.0.21",
"immerx": "^3.2.2",
"preact": "^10.17.0",
"prop-types": "^15.8.1",
"regenerator-runtime": "^0.13.11",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@linaria/babel-preset": "^4.5.4",
"@linaria/shaker": "^4.5.3",
"@linaria/webpack5-loader": "^4.5.4",
"@swc/core": "1.2.215",
"@swc/plugin-styled-components": "^1.5.71",
"babel-loader": "^8.3.0",
"babel-plugin-import": "^1.13.8",
"babel-plugin-macros": "^3.1.0",
"babel-preset-preact": "^2.0.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.3",
"prettier": "^2.8.8",
"style-loader": "^3.3.3",
"svg-url-loader": "^8.0.0",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
}
}