-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 3.11 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
{
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/preset-env": "^7.22.20",
"@fontsource/inter": "5.0.3",
"@fontsource/rasa": "5.0.3",
"@hotwired/turbo": "^7.3.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"bulma": "0.9.4",
"bulma-checkradio": "2.1.3",
"bulma-switch": "2.0.4",
"bulma-tooltip": "3.0.2",
"del": "7.0.0",
"fontawesome-subset": "4.4.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-replace": "1.1.4",
"gulp-sass": "5.1.0",
"npm-run-all": "^4.1.5",
"rollup": "^3.29.2",
"sass": "^1.67.0",
"uglify-js": "^3.17.4"
},
"description": "A task scheduling tool.",
"devDependencies": {
"@fortawesome/fontawesome-free": "6.4.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "^9.0.6",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"browser-sync": "^2.29.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.49.0",
"gulp-concat": "2.6.1",
"gulp-cssnano": "2.1.3",
"gulp-purgecss": "5.0.0",
"gulp-rename": "2.0.0",
"gulp-uglify": "3.0.2",
"prettier": "^3.0.3",
"semantic-release": "^22.0.0"
},
"homepage": "https://atlas-hub.atlas.bi",
"license": "AGPL-3.0-or-later",
"name": "atlas_automation_hub",
"private": true,
"repository": {
"type": "git",
"url": "github:atlas-bi/atlas-automation-hub"
},
"scripts": {
"build": "run-p gulp:build model:*",
"commit": "git add . && pre-commit run ; git add . && cz --no-verify",
"dev:browser": "browser-sync start --proxy http://127.0.0.1:4999/ --files=\"web/**\"",
"dev:runner": "FLASK_ENV=development FLASK_DEBUG=1 FLASK_APP=runner poetry run flask run --port=5002",
"dev:scheduler": "FLASK_ENV=development FLASK_DEBUG=1 FLASK_APP=scheduler poetry run flask run --port=5001",
"dev:web": "FLASK_ENV=development FLASK_DEBUG=1 FLASK_APP=web FLASK_RUN_PORT=4999 poetry run flask run",
"format": "run-s format:*",
"format:dynamic": "poetry run tox -e reformat",
"format:static": "prettier --config .prettierrc \"web/**/*.{ts,css,less,scss,js,json,md,yaml,html}\" --write",
"gulp:build": "gulp build",
"gulp:watch": "gulp watch",
"install": "gulp build",
"model:runner": "cp web/model.py runner/",
"model:scheduler": "cp web/model.py scheduler/",
"prod:web": "FLASK_ENV=production FLASK_DEBUG=0 FLASK_APP=web poetry run flask run",
"publish": "cd publish && fab publish && cd ..",
"start": "npm-run-all build --parallel gulp:watch dev:*",
"test": "run-s test:*",
"test:eslint": "eslint \"./web/**/*.js\" --color",
"test:lint": "poetry run tox -e lint",
"test:prettier": "prettier --check --config .prettierrc \"web/**/*.{ts,css,less,scss,js,json,md,yaml,html}\""
},
"version": "2.12.3"
}