-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "anechoic",
"version": "0.0.1",
"description": "JavaScript audio library",
"main": "src/index.ts",
"repository": "[email protected]:hydrotik/anechoic.git",
"author": "Donovan adams <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup --config rollup.config.prod.js",
"dev": "rollup --config rollup.config.dev.js --watch"
},
"dependencies": {
"@types/webaudioapi": "^0.0.27",
"eventemitter3": "^4.0.4",
"react": "^16.13.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"ts-loader": "^7.0.5",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
}
}