-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "arcade-rom-filter",
"version": "1.0.0",
"description": "",
"bin": "index.js",
"main": "index.js",
"scripts": {
"dev": "node index.js",
"devs": "node index.js --no-open",
"pkg-win": "pkg package.json -t node16-win-x64 --out-path dist/",
"pkg-all": "pkg package.json -t linux-x64,macos-x64,win-x64 --out-path dist/",
"css-generate": "npx tailwindcss -i public/css/tailwind.css -o public/css/style.css",
"css": "npx tailwindcss -i public/css/tailwind.css -o public/css/style.css --watch"
},
"pkg": {
"assets": [
"public/**/*",
"default/*"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.8",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"open": "^8.4.0",
"path": "^0.12.7",
"portfinder": "^1.0.32",
"tailwindcss": "^3.1.8",
"xml-js": "^1.6.11",
"ws": "^8.8.1"
},
"devDependencies": {
"eslint": "^8.18.0",
"prettier": "^2.7.1"
}
}