-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (38 loc) · 1.44 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
{
"name": "clouduboy",
"version": "0.8.91",
"description": "Clouduboy - Arduboy cloud compiler",
"main": "server/app.js",
"repository": "flaki/clouduboy",
"scripts": {
"start": "node server/app.js",
"start:prod": "node server/app.js --dist",
"flasher": "electron flasher/app",
"test": "echo \"Error: no test specified\" && exit 1",
"build:transpile": "babel editor/js -d editor/dist/js",
"build:copy-libs": "node -r shelljs/global -e 'mkdir(\"-p\", \"editor/dist/lib\"); cp(\"node_modules/whatwg-fetch/fetch.js\", \"editor/dist/lib/fetch.js\");'",
"build:dist-html": "node -r shelljs/global -e 'mkdir(\"-p\", \"editor/dist\"); cp(\"editor/*.html\", \"editor/dist/\"); ls(\"editor/dist/*.html\").forEach((file) => sed(\"-i\", /\\/js\\//, \"\\/dist\\/js\\/\", file));'",
"build:dist-js": "npm run build:transpile & npm run build:copy-libs",
"build": "npm run build:dist-html & npm run build:dist-js"
},
"author": "Flaki (https://twitter.com/slsoftworks)",
"license": "MIT",
"dependencies": {
"body-parser": "^1.14.2",
"child-process-promise": "^1.1.0",
"cookie-parser": "^1.4.1",
"cors": "^2.7.1",
"express": "^4.13.3",
"formidable": "^1.0.17",
"fs-extra": "^0.26.5",
"fs-promise": "^0.4.1",
"nedb": "^1.7.4",
"vhost": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"shelljs": "^0.6.0",
"whatwg-fetch": "^0.11.0"
}
}