-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.79 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
94
95
96
{
"name": "lol-particle-tools",
"description": "Utility tool for League of Legends Creators that helps managing particles. (includes Particle Locator)",
"version": "2.0.2",
"author": "Karol Rudnikowski (dxdroni)",
"private": true,
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "npm run build && copyfiles ./icon.png ./build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"eslint": "eslint --ext .js,.jsx src",
"format": "prettier --config .prettierrc --write \"**/*.{ts,js,jsx,tsx,css,scss,md}\"",
"electron-dev": "concurrently \"npm start \" \"wait-on http://localhost:3000 && electron .\"",
"pack": "npm run deploy && electron-builder --dir",
"dist": "npm run deploy && electron-builder",
"prepare": "husky install",
"lint:test": "eslint \"{src,public}/**/*.{js,jsx}\"",
"lint:fix": "eslint --fix \"{src,public}/**/*.{js,jsx}\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.4.3",
"electron-is-dev": "^2.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-toastify": "^9.1.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"concurrently": "^7.2.1",
"copyfiles": "^2.4.1",
"electron": "^29.3.2",
"electron-builder": "^24.13.3",
"eslint": "^8.32.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"file-saver": "^2.0.5",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"react-scripts": "5.0.1",
"tailwindcss": "^3.1.3",
"wait-on": "^7.0.1"
},
"build": {
"appId": "dxdroni.lol-particle-tools",
"productName": "LoL Particle Tools",
"copyright": "Copyright © 2022 Karol Rudnikowski (dxdroni)",
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"afterPack": "./afterPackScript.js",
"fileAssociations": [
{
"ext": "png",
"icon": "./icon.png"
}
],
"win": {
"target": [
"nsis",
"portable"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{ts,js,css,scss,md}": "prettier --write"
}
}