-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.28 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "recorder-rcl",
"description": "A component for verse recording",
"version": "0.1.8",
"private": false,
"homepage": "https://github.com/friendsofagape/audio-recorder",
"repository": {
"type": "git",
"url": "https://github.com/friendsofagape/audio-recorder"
},
"license": "MIT",
"scripts": {
"build": "babel ./src --out-dir ./dist --copy-files -s inline --extensions \".ts,.js\"",
"build:tailwind": "tailwind build src/tailwind.css -o src/tailwind.output.css",
"watch:tailwind": "chokidar 'src/**/*.css' 'src/**/*.scss' --ignore src/tailwind.output.css -c 'npm run build:tailwind'",
"start": "npm-run-all build:tailwind --parallel watch:tailwind start:electron",
"dev": "npm-run-all build:tailwind --parallel watch:tailwind start:styleguidist",
"start:styleguidist": "styleguidist server",
"start:electron": "concurrently -k \"styleguidist server\" \"npm:electron\"",
"styleguide:build": "styleguidist build",
"electron": "wait-on tcp:6060 && electron .",
"prebuild": "npm run build:tailwind",
"predeploy": "babel ./src --out-dir ./dist --copy-files -s inline --extensions \".ts,.js\"",
"deploy": "git push"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "latest",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/typography": "^0.5.4",
"alamp": "^0.1.6",
"chokidar-cli": "^3.0.0",
"core-js": "^3.23.4",
"crunker": "^1.3.0",
"electron-is-dev": "^2.0.0",
"event-emitter": "^0.3.5",
"file-saver": "^2.0.5",
"localforage": "1.10.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"postcss": "8.4.14",
"postcss-cli": "^10.0.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-audio-player": "^0.17.0",
"react-dom": "^17.0.2",
"react-media-recorder": "^1.6.6",
"react-styleguidist": "^11.2.0",
"tailwindcss": "^3.1.6",
"waveform-playlist": "^4.3.3",
"wavesurfer.js": "6.2.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@tailwindcss/jit": "0.1.18",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"babel-plugin-istanbul": "^6.1.1",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"electron": "^19.0.8",
"file-loader": "^6.2.0",
"istanbul-lib-coverage": "^3.2.0",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"typescript": "4.7.4",
"url-loader": "^4.1.1",
"wait-on": "^6.0.1",
"webpack": "^5.73.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"keywords": [
"Audio Recorder",
"audioeditor",
"webapieditor",
"waveformeditor"
],
"main": "public/electron.js",
"files": [
"dist/*"
],
"module": "dist/index.js",
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"tailwindcss": "$tailwindcss"
}
}