-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "readalong-editor",
"version": "0.0.1",
"description": "Simple editor for ReadAlong alignments",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development --node-env=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"start": "webpack serve",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReadAlongs/Editor.git"
},
"keywords": [
"speech",
"audio",
"text"
],
"author": "David Huggins-Daines <dhd@ecolingui.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReadAlongs/Editor/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"homepage": "https://github.com/ReadAlongs/Editor#readme",
"devDependencies": {
"@commitlint/config-conventional": "^17.4.4",
"@types/wavesurfer.js": "^6.0.3",
"commitlint": "^17.5.1",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^2.7.5",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"ts-loader": "^9.4.2",
"typescript": "^5.0.3",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"dependencies": {
"purecss": "^3.0.0",
"wavesurfer.js": "^6.6.2"
}
}