-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "controle-orcamentario",
"version": "1.0.0",
"description": "Sistema de controle orçamentário para DGEO",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/1cgeo/controle_orcamentario"
},
"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 controle-orcamentario",
"start-https": "pm2 start server/src/index.js --name controle-orcamentario-https -- --https ",
"start-dev": "concurrently \"cd server && npm run dev\" \"cd client && npm run start\""
},
"keywords": [
"Node",
"Express"
],
"author": "DSG/1CGEO <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/1cgeo/controle_orcamentario/issues"
},
"dependencies": {
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"commander": "^11.0.0",
"concurrently": "^7.2.2",
"fs-extra": "^10.1.0",
"inquirer": "8.2.2",
"npm-check-updates": "^15.0.2",
"npm-run": "^5.0.1",
"pg-promise": "^10.11.1",
"pgtools": "^0.3.2",
"pm2": "^5.2.0"
}
}