-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.71 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
{
"name": "nodemaker",
"version": "1.0.0",
"description": "Automatic node generator for n8n",
"scripts": {
"setup": "npm i && cd client && npm i && cd ..",
"nodegen": "cp .hygen.js build/.hygen.js && tsc && node build/scripts/generateNodeFiles.js",
"packgen": "tsc && node build/scripts/generatePackageJson.js",
"icongen": "tsc && node build/scripts/generateIconCandidates.js",
"docsgen": "tsc && node build/scripts/generateNodeDocs.js",
"place": "tsc && node build/scripts/placeFiles.js",
"resize": "tsc && node build/scripts/resizeIcon.js",
"flowgen": "tsc && node build/scripts/createWorkflow.js",
"runapp-shotgen": "concurrently --kill-others-on-fail \"npm run runapp\" \"npm run shotgen\"",
"runapp": "cd ../n8n && npm run start",
"shotgen": "tsc && node build/scripts/takeScreenshot.js",
"empty": "tsc && node build/scripts/emptyOutputDir.js",
"desktop": "cd client && npm run electron:serve",
"validate": "ttsc && node build/scripts/validateParams.js"
},
"keywords": [
"n8n"
],
"author": "Iván Ovejero & Erin McNulty",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"concurrently": "^5.2.0",
"dotenv": "^8.2.0",
"electron": "^9.1.1",
"form-data": "^3.0.0",
"hygen": "^5.0.3",
"inquirer": "^7.3.1",
"node-fetch": "^2.6.0",
"puppeteer": "^5.2.1",
"sharp": "^0.25.4",
"typescript-is": "^0.16.3",
"underscore": "^1.10.2"
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/node": "^12.12.38",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^3.0.1",
"@types/sharp": "^0.25.1",
"@types/underscore": "^1.10.21",
"ttypescript": "^1.5.10",
"typescript": "^3.9.6"
}
}