-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@vveb-audio/core",
"version": "0.0.1-alpha",
"author": "Scott Morse",
"description": "A library on top of the Web Audio API for creating and rendering virtual audio processing graphs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ScottMorse/vveb-audio"
},
"workspaces": [
"**/*"
],
"scripts": {
"sandbox": "npm start --workspace ./sandbox",
"lint": "npm-run-all lint:tsc lint:eslint lint:format",
"lint:fix": "npm-run-all lint:eslint:fix lint:format:fix",
"lint:eslint": "eslint \"./src/**/*\"",
"lint:eslint:fix": "eslint --fix \"./src/**/*\"",
"lint:format": "prettier --check -u \"**/*.*\"",
"lint:format:fix": "prettier --write -u \"**/*.*\"",
"lint:tsc": "tsc --noEmit",
"lint-staged": "lint-staged",
"test": "jest --config=testing/jest/config.ts",
"test:watch": "jest --config=testing/jest/config.ts --watchAll",
"check-all": "npm-run-all lint test",
"pre-commit": "npm-run-all lint-staged lint",
"pre-push": "npm-run-all lint-staged check-all",
"prepare": "husky install"
},
"lint-staged": {
"**/*": [
"prettier --write -u"
]
},
"dependencies": {
"assert": "^2.0.0",
"immer": "^9.0.15",
"lodash": "^4.17.21",
"nanoid": "^4.0.0",
"process": "^0.11.10",
"ts-mixer": "^6.0.3",
"zustand": "^4.1.2"
},
"devDependencies": {
"@babel/core": "7.19.1",
"@babel/preset-env": "7.19.1",
"@babel/preset-typescript": "7.18.6",
"@testing-library/jest-dom": "5.16.5",
"@types/audioworklet": "0.0.35",
"@types/chrome": "^0.0.227",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/events": "3.0.0",
"@types/jest": "29.0.3",
"@types/lodash": "4.14.185",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.37.0",
"babel-loader": "8.2.5",
"eslint": "8.23.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.4",
"eslint-plugin-jsdoc": "^40.1.1",
"eslint-plugin-sort-class-members": "^1.18.0",
"fork-ts-checker-webpack-plugin": "7.2.13",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.0",
"jest": "29.0.3",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"source-map-loader": "^4.0.1",
"standardized-audio-context-mock": "^9.6.23",
"ts-jest": "^29.1.0",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "4.0.0",
"typescript": "4.8.3",
"url-loader": "4.1.1",
"webpack": "^5.72.1",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.0",
"webpack-shell-plugin-next": "^2.3.1"
},
"publishConfig": {
"access": "public"
}
}