forked from actionhero/ah-resque-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.81 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
{
"author": "Evan Tahler <[email protected]>",
"name": "ah-resque-ui",
"description": "A resque administration website for actionhero",
"version": "2.0.5",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/actionhero/ah-resque-ui.git"
},
"keywords": [
"resque",
"ui",
"website",
"tasks",
"background",
"job",
"react"
],
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"actionhero": ">=26.1.2"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@nivo/axes": "^0.69.1",
"@nivo/bump": "^0.69.1",
"@nivo/core": "^0.69.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.15",
"actionhero": "^27.0.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-bootstrap": "^2.0.1",
"react-dom": "^17.0.2",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"ts-jest": "^27.0.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2"
},
"scripts": {
"dev": "ts-node-dev --no-deps --transpile-only ./src/server.ts",
"start": "node ./dist/server.js",
"lint": "prettier --check src public-src __tests__ '!public-src/public'",
"pretest": "npm run prepare",
"test": "jest",
"build": "npm run ui:build && npm run api:build",
"ui:watch": "webpack --progress --colors --watch --mode development",
"ui:build": "webpack --mode production",
"api:build": "rm -rf dist && ./node_modules/.bin/tsc --declaration",
"prepare": "npm run lint && npm run build"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}