forked from chevalvert/microbiomes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.67 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
97
98
99
100
101
102
103
104
105
106
{
"name": "microbiomes-mallapixels",
"version": "2.0.0",
"description": "",
"bin": "server/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development nodemon server/index.js --watch server --watch src/templates/*.hbs",
"build": "cross-env NODE_ENV=production webpack build --config webpack.config.js",
"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 server/.env.example \".tmp-pkg/$npm_package_name.app/Contents/Resources/.env\" && cp server/app.json \".tmp-pkg/$npm_package_name.app/Contents/Resources/\" && 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/**/*",
"build/**/*",
"static/**/*",
"node_modules/@serialport/bindings-cpp/prebuilds"
],
"outputPath": "binaries",
"targets": [
"node16-macos-x64"
]
},
"engines": {
"node": ">=16"
},
"author": "Arnaud Juracek",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-transform-react-jsx": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.18.6",
"@babel/runtime": "^7.16.5",
"babel-loader": "^8.2.3",
"cross-env": "^5.0.1",
"css-loader": "0.28.x",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-standard": "^4.0.1",
"ghp": "^1.7.0",
"ifdef-loader": "^2.3.2",
"md-to-pdf": "^5.2.0",
"mini-css-extract-plugin": "1.6.x",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"pkg": "^5.8.0",
"raw-loader": "^4.0.2",
"remove-files-webpack-plugin": "^1.5.0",
"sass-loader": "6.0.6",
"style-loader": "0.18.x",
"stylelint": "^8.0.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.10.1",
"webpack": "4.x",
"webpack-cli": "4.8.x",
"webpack-dev-middleware": "^5.3.0",
"webpack-hot-middleware": "^2.25.1"
},
"dependencies": {
"@internet/raf": "^0.2.1",
"animejs": "^3.2.1",
"chalk": "4.x",
"classnames": "^2.3.1",
"cuid": "^2.1.8",
"dotenv": "^16.0.1",
"express": "^4.17.2",
"express-fileupload": "^1.4.0",
"express-session": "^1.17.3",
"fast-random": "^2.0.4",
"fs-extra": "^10.0.0",
"handlebars": "^4.7.7",
"hex-to-rgb": "^1.0.1",
"hotkeys-js": "^3.9.4",
"iconoir": "^5.3.0",
"memorystore": "^1.6.7",
"missing-math": "^3.4.0",
"noisejs": "^2.1.0",
"point-in-polygon": "^1.1.0",
"poly-bool": "^1.0.0",
"reconnectingwebsocket": "^1.0.0",
"serialport": "^10.4.0",
"sudo-js": "^1.0.2",
"tiny-emitter": "^2.1.0",
"ws": "^8.8.1"
},
"homepage": "https://github.com/chevalvert/microbiomes#readme",
"bugs": {
"url": "https://github.com/chevalvert/microbiomes/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:chevalvert/microbiomes.git"
}
}