-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.58 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": "player-web-x-package-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clear": "del-cli ./out/* !.gitignore",
"build": "npm run clear && cross-env TARGET=build ts-node ./build/webpack.ts",
"serve": "npm run clear && cross-env TARGET=serve ts-node ./build/webpack.ts",
"lint": "eslint --fix \"{src,types,build}/**/*.ts\"; prettier --write \"{src,types,build}/**/*.ts\""
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"CHANGELOG.md": "kacl lint --filename"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.3.2",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"chai": "^4.3.6",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"del-cli": "^4.0.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"kacl": "^1.1.1",
"lint-staged": "^13.0.3",
"madge": "^5.0.1",
"path": "^0.12.7",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.0",
"typedoc": "^0.24.8",
"typescript": "^5.0.4",
"webpack": "^5.72.1",
"webpack-build-notifier": "^2.3.0",
"webpack-plugin-serve": "^1.6.0"
},
"dependencies": {
"@bitmovin/player-web-x": "^10.1.3"
}
}