forked from gmarty/scumm-nes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "scumm-nes",
"version": "0.1.0",
"description": "An app to explore the content of the Maniac Mansion game on NES.",
"author": "[email protected]",
"license": "BlueOak-1.0.0",
"keywords": [
"video game",
"adventure game",
"scumm",
"hacks"
],
"homepage": "https://gmarty.github.io/scumm-nes",
"repository": "git+https://github.com/gmarty/scumm-nes.git",
"bugs": {
"url": "https://github.com/gmarty/scumm-nes/issues"
},
"type": "module",
"source": "src/index.html",
"staticFiles": {
"staticPath": "public"
},
"scripts": {
"test": "node --test",
"dev": "parcel",
"start": "parcel",
"build": "parcel build --public-url /scumm-nes"
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.3",
"clsx": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"autoprefixer": "^10.4.19",
"parcel": "^2.12.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"process": "^0.11.10",
"tailwindcss": "^3.4.3"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.4.1"
},
"prettier": {
"bracketSameLine": true,
"singleQuote": true,
"singleAttributePerLine": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"browserslist": "last 2 Chrome versions, last 2 Firefox versions, Firefox ESR, last 1 Safari versions"
}