-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.78 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "gunma-univ-gaming-edition",
"description": "The browser extension of Gunma University Gaming Edition",
"license": "MIT",
"version": "2.3.0",
"scripts": {
"build": "pnpm run build-chrome",
"build:dev": "pnpm run build-chrome:dev",
"watch": "pnpm run watch-chrome",
"build-chrome": "pnpm webpack --mode production --env browser=chrome",
"build-chrome:dev": "pnpm webpack --mode development --env browser=chrome",
"watch-chrome": "pnpm webpack --mode development --watch --env browser=chrome",
"build-firefox": "pnpm webpack --mode production --env browser=firefox",
"build-firefox:dev": "pnpm webpack --mode development --env browser=firefox",
"watch-firefox": "pnpm webpack --mode development --watch --env browser=firefox",
"analyze": "pnpm run analyze-chrome",
"analyze-chrome": "pnpm run build-chrome:dev && source-map-explorer ./dist/**.js",
"analyze-firefox": "pnpm run build-firefox:dev && source-map-explorer ./dist/**.js",
"fmt": "prettier --write '**/*.{js,json,md,html,sh,ts,tsx,css,scss}'",
"lint": "prettier --check . && eslint . ",
"lint:fix": "pnpm fmt && eslint . --fix"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/register": "^7.24.6",
"@tailwindcss/typography": "^0.5.13",
"@types/chrome": "^0.0.268",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.10.7",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"daisyui": "^4.12.8",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-unused-imports": "^3.1.0",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-nested": "^6.0.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.2",
"prettier-plugin-sh": "^0.14.0",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"source-map-explorer": "^2.5.3",
"style-loader": "^4.0.0",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.0",
"tailwindcss": "^3.4.4",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.5.2",
"webextension-polyfill": "^0.12.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"volta": {
"node": "20.9.0"
},
"dependencies": {
"classnames": "^2.5.1",
"react": "^18.3.1",
"react-daisyui": "^5.0.0",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.24.0"
},
"packageManager": "[email protected]+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2"
}