-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "tppm",
"version": "0.4.7",
"description": "Trakt Playback Progress Manager",
"author": "sharkykh",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18.9.0",
"yarn": ">=1.15"
},
"scripts": {
"start": "yarn build --env local && node www.js",
"start:dev": "yarn dev --env local && node www.js",
"lint": "eslint --cache **/*.{js,vue}",
"build": "webpack --mode production --progress",
"build:dev": "webpack --mode development --progress",
"dev": "webpack-dev-server --mode development --progress"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"@babel/register": "^7.23.7",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"core-js": "^3.30.1",
"css-loader": "^6.7.3",
"date-fns": "^2.29.3",
"eslint": "^8.44.0",
"eslint-config-xo-space": "^0.34.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.11.0",
"eslint-webpack-plugin": "^4.0.1",
"express": "^4.21.2",
"html-webpack-plugin": "^5.6.2",
"http-status-codes": "^2.2.0",
"mini-css-extract-plugin": "^2.7.5",
"semantic-ui-css": "^2.4.1",
"semantic-ui-vue": "^0.11.0",
"style-loader": "^3.3.2",
"trakt.tv-browser": "sharkykh/trakt.tv-browser#8.2.1-0",
"vue": "^2.7.16",
"vue-loader": "^15.11.1",
"vuex": "^3.6.2",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3",
"webpack-null-plugin": "^0.0.2"
}
}