-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "tsapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "typesync || :",
"postinstall": "typesync",
"build": "webpack --mode=production",
"start": "webpack-dev-server --mode=development",
"watch": "webpack -w --config webpack.dev.js",
"test": "jest",
"lint": "eslint . --ext 'ts,js'",
"lint:fix": "eslint . --fix --ext 'ts,js'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "0.0.147",
"@types/core-js": "^2.5.4",
"@types/eslint": "^7.28.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.1.4",
"@types/he": "^1.1.2",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/prettier": "^2.3.2",
"@types/webpack-dev-server": "^3.11.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"axios": "^0.21.1",
"core-js": "^3.15.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"he": "^1.2.0",
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"json-2-csv": "^3.6.1",
"prettier": "^2.3.2",
"striptags": "^3.2.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"typesync": "^0.8.0",
"vtt-to-json": "^0.1.1",
"webpack": "^5.45.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0",
"xml-js": "^1.6.11"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}