-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "gerenciador-fme",
"version": "2.0.0",
"description": "A simple implementation of a manager for Safe FME Workbench",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/1cgeo/gerenciador_fme"
},
"engines": {
"node": "~8.7.0",
"npm": ">=5.4.2"
},
"scripts": {
"install-all": "npm install && cd server && npm install && cd ../client && npm install",
"config": "node create_config.js",
"build": "node create_build.js",
"create-docs": "node server/create_documentation.js",
"start": "pm2 start server/src/index.js --name gerenciador-fme",
"start-https": "pm2 start server/src/index.js --name gerenciador-fme-https -- --https ",
"start-dev": "concurrently \"cd server && npm run dev\" \"cd client && npm run start\""
},
"keywords": [
"FME",
"Node",
"Express"
],
"author": "DSG/1CGEO <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/1cgeo/gerenciador_fme/issues"
},
"dependencies": {
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"concurrently": "^7.2.2",
"fs-extra": "^10.1.0",
"inquirer": "^9.0.0",
"npm-run": "^5.0.1",
"pg-promise": "^10.11.1",
"pm2": "^5.2.0"
}
}