forked from akuma06/WcPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "wcplayer",
"version": "1.0.0",
"description": "A player supporting html video and audio element which can be augmented to support YouTube, Vimeo and other plarforms with plugins.",
"private": true,
"author": "akuma06",
"license": "MIT",
"scripts": {
"dev": "webpack serve",
"lint": "eslint ./src/",
"lint-fix": "eslint --fix ./src/*.ts",
"typecheck": "tsc --noEmit",
"build": "yarn typecheck && yarn lint-fix && yarn lib-build && webpack"
},
"devDependencies": {
"@types/feather-icons": "^4.7.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.0.5",
"react-hot-loader": "^4.13.0",
"sass": "^1.26.5",
"source-map-loader": "^2.0.1",
"ts-loader": "^8.1.0",
"tsc": "^1.20150623.0",
"typescript": "^3.9.3",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"feather-icons": "^4.28.0"
}
}