-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "imgxplain",
"version": "0.1.0",
"description": "Imgxplain is a tool designed to explain images with an audio description and timed actions",
"main": "public/main.js",
"dependencies": {
"ajv": "6.12.6",
"wavesurfer.js": "3.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/wavesurfer.js": "3.3.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"canvas": "^2.6.1",
"electron": "11.1.0",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"jsdom": "^16.3.0",
"node-notifier": ">=8.0.1",
"prettier": "2.0.5",
"ts-jest": "^26.1.1",
"typescript": "~3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"clean": "rm -rf public/build/",
"compile": "npx tsc -b --verbose",
"postcompile": "webpack public/build/*.js -o public/dist/bundle.js && npm run clean",
"lint": "npx eslint '**/*.ts'",
"lint-fix": "npx eslint --fix '**/*.ts'",
"format": "npx prettier --write '**/*.ts' .eslintrc.json *.json public/css/**/* public/*.js",
"format-check": "npx prettier --check '**/*.ts' .eslintrc.json .*.json public/css/**/* public/*.js",
"test": "jest",
"start": "electron ."
},
"author": "norbjd",
"license": "GPL-3.0-only"
}