-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 2.51 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
{
"name": "fluid-installer",
"version": "1.0.0",
"description": "",
"source": "src/index.html",
"scripts": {
"prebuild": "rm -rf dist",
"start": "parcel",
"build": "parcel build --public-url .",
"test": "jest",
"lint": "eslint ./src --fix",
"format": "prettier ./src --write",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/breiler/fluid-installer.git"
},
"author": "Joacim Breiler",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/breiler/fluid-installer/issues"
},
"homepage": "https://github.com/breiler/fluid-installer#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@parcel/transformer-sass": "^2.13.3",
"@parcel/transformer-yaml": "^2.13.3",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"babel-jest": "^29.7.0",
"buffer": "^5.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.37.2",
"events": "^3.3.0",
"globals": "^15.13.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"parcel": "^2.13.3",
"parcel-reporter-static-files-copy": "^1.5.2",
"prettier": "3.4.2",
"process": "^0.11.10",
"react-router-dom": "^6.14.1",
"svgo": "^3.3.2",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.18.1"
},
"dependencies": {
"@codemirror/legacy-modes": "^6.4.0",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@uiw/codemirror-extensions-langs": "^4.23.7",
"@uiw/react-codemirror": "^4.23.7",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"bootstrap": "^5.3.0",
"crypto-js": "^4.2.0",
"esptool-js": "^0.5.3",
"firebase": "^10.6.0",
"js-yaml": "^4.1.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-markdown": "^8.0.7",
"remark-gfm": "^3.0.1"
}
}