-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.5 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.5 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "debate-timer-fe-win",
"private": true,
"version": "1.0.2",
"homepage": "./",
"main": "./dist/main/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint:tsc": "npx tsc --build --noEmit",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"**/*.{css,scss}\"",
"lint": "npm run lint:eslint && npm run lint:stylelint && npm run lint:tsc",
"preview": "vite preview --port 3000",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"chromatic": "npx chromatic --project-token=chpt_a6dc39eba6488b2",
"electron:build": "vite build && electron-builder",
"electron:start": "electron ."
},
"dependencies": {
"async-mutex": "^0.5.0",
"luxon": "^3.7.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-icons": "^5.4.0",
"react-router-dom": "^7.1.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.15.0",
"@storybook/addon-essentials": "^8.6.0",
"@storybook/addon-interactions": "^8.6.0",
"@storybook/addon-onboarding": "^8.6.0",
"@storybook/blocks": "^8.6.0",
"@storybook/react": "^8.6.0",
"@storybook/react-vite": "^8.6.0",
"@storybook/test": "^8.6.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/luxon": "^3.6.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"chromatic": "^11.20.2",
"electron": "^22.3.27",
"electron-builder": "^26.0.12",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"storybook": "^8.6.0",
"stylelint": "^16.11.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-electron": "^0.29.0",
"vitest": "^2.1.8"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"build": {
"appId": "com.debatetimer.app",
"productName": "디베이트 타이머 - Debate Timer",
"directories": {
"output": "release"
},
"files": [
"dist/"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"ia32",
"x64"
]
}
],
"icon": "build/icon.ico",
"artifactName": "${productName} Setup ${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"shortcutName": "Debate Timer",
"runAfterFinish": true,
"createDesktopShortcut": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico"
}
}
}