forked from v3ga/murmur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.65 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
{
"name": "murmur",
"version": "2.2.0",
"description": "murmur-v2",
"bin": "server/index.js",
"scripts": {
"start": "vite --clearScreen false & cross-env NODE_ENV=development nodemon server/index.js",
"test": "vite --clearScreen false --mode test & cross-env NODE_ENV=test nodemon server/index.js",
"preview": "vite build && node server",
"build": "vite build",
"pkg:cleanup": "rm -rf .tmp-pkg",
"pkg:binaries": "npm run build && pkg . --output \".tmp-pkg/$npm_package_name\"",
"pkg:app": "rm -rf \"$npm_package_name.app\" && cp -r \"scripts/template.app\" \".tmp-pkg/$npm_package_name.app\" && mv \".tmp-pkg/$npm_package_name\" \".tmp-pkg/$npm_package_name.app/Contents/Resources/\" && cp .env \".tmp-pkg/$npm_package_name.app/Contents/Resources/.env\" && cp -r public \".tmp-pkg/$npm_package_name.app/Contents/Resources/public\" && mv \".tmp-pkg/$npm_package_name.app\" .",
"pkg:output": "echo \"\nProject successfully packaged.\nGo to $npm_package_homepage/releases/tag/$npm_package_version to attach package.zip to the $npm_package_version tag\"",
"pkg": "npm run pkg:cleanup && npm run pkg:binaries && npm run pkg:app && npm run pkg:cleanup && npm run pkg:output",
"postversion": "npm run pkg && git push --all"
},
"pkg": {
"assets": [
"server/**/*",
"dist/**/*",
"node_modules/robotjs"
],
"outputPath": "binaries",
"targets": [
"node18-macos-x64"
]
},
"engines": {
"node": ">=18"
},
"author": "Arnaud Juracek",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tooooools/boilerplate.git"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"ghp": "^1.7.0",
"nodemon": "^3.1.1",
"pkg": "^5.8.1",
"sass": "^1.59.3",
"stylelint": "^15.3.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.5.0",
"vite": "^4.2.1"
},
"dependencies": {
"@internet/raf": "^0.2.1",
"@tooooools/ui": "^1.5.0",
"animejs": "^3.2.2",
"chalk": "4.x",
"debounce": "^2.0.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"hex-to-rgb": "^1.0.1",
"hotkeys-js": "^3.13.7",
"howler": "^2.2.4",
"missing-math": "^3.4.0",
"pitchy": "^4.1.0",
"reconnectingwebsocket": "^1.0.0",
"serialport": "^12.0.0",
"tiny-throttle": "^1.0.4",
"ws": "^8.17.0"
}
}