|
1 | 1 | { |
2 | 2 | "name": "bull-arena", |
3 | 3 | "description": "An interactive UI dashboard for Bee Queue", |
4 | | - "main": "index.js", |
| 4 | + "main": "dist/index.js", |
5 | 5 | "author": "Mixmax <hello@mixmax.com>", |
6 | 6 | "license": "MIT", |
7 | 7 | "dependencies": { |
|
23 | 23 | "@semantic-release/github": "^7.0.7", |
24 | 24 | "@semantic-release/npm": "^7.0.5", |
25 | 25 | "@semantic-release/release-notes-generator": "^9.0.1", |
| 26 | + "@types/express": "^4.17.11", |
26 | 27 | "bee-queue": "^1.2.3", |
27 | 28 | "bull": "^3.16.0", |
28 | 29 | "conventional-changelog-conventionalcommits": "^4.3.0", |
|
33 | 34 | "lint-staged": "^10.5.4", |
34 | 35 | "prettier": "^2.0.5", |
35 | 36 | "pretty-quick": "^3.1.0", |
36 | | - "semantic-release": "^17.4.2" |
| 37 | + "rimraf": "^3.0.2", |
| 38 | + "semantic-release": "^17.4.2", |
| 39 | + "typescript": "^4.2.4" |
37 | 40 | }, |
38 | 41 | "scripts": { |
39 | | - "ci": "npm run lint && if [ -z \"$CI\" ]; then npm run ci:commitlint; fi", |
| 42 | + "ci": "npm run build && npm run lint && if [ -z \"$CI\" ]; then npm run ci:commitlint; fi", |
40 | 43 | "ci:commitlint": "commitlint --from \"origin/${GITHUB_BASE_REF:-master}\"", |
41 | 44 | "dry:run": "npm publish --dry-run", |
| 45 | + "build": "rimraf dist && tsc", |
42 | 46 | "lint": "prettier -c .", |
43 | 47 | "lint:staged": "lint-staged", |
44 | 48 | "prepare": "husky install", |
|
48 | 52 | "node": ">=7.6.0" |
49 | 53 | }, |
50 | 54 | "files": [ |
51 | | - "index.js", |
52 | | - "public", |
53 | | - "src" |
| 55 | + "dist", |
| 56 | + "public" |
54 | 57 | ], |
55 | 58 | "repository": "https://github.com/bee-queue/arena.git", |
56 | 59 | "version": "3.20.1" |
|
0 commit comments