-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.62 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
{
"name": "jhplayers",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"dist": "node --loader ts-node/esm node_modules/webpack-cli/bin/cli.js --env production",
"clean": "del-cli -f dist",
"lint": "run-s --silent -c 'lint:**'",
"lint:scss": "stylelint './**/*.scss' --fix",
"lint:ts": "eslint . --fix",
"test": "echo 'Test suites are a TODO! Gonna need help with these... orz'",
"start": "node --loader ts-node/esm node_modules/webpack-cli/bin/cli.js serve",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.16.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"@types/through2": "^2.0.41",
"@types/webpack-bundle-analyzer": "^4.7.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"del-cli": "^6.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import-x": "^4.4.3",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-no-use-extend-native": "^0.7.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"html-loader": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.1",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"stylelint-prettier": "^5.0.2",
"terser-webpack-plugin": "^5.3.10",
"through2": "^4.0.2",
"transform-loader": "^0.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"packageManager": "[email protected]+sha1.90f9b2bb3ed58632bcb7b13c3902d6873ee9501c",
"dependencies": {
"querystring-es3": "^0.2.1"
}
}