-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.88 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
{
"author": "Evan Tahler <[email protected]>",
"name": "ah-next-plugin",
"description": "For booting a Next.JS React application inside of Actionhero",
"license": "Apache-2.0",
"version": "1.0.5",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"url": "git://github.com/actionhero/ah-next-plugin.git"
},
"homepage": "http://www.actionherojs.com",
"peerDependencies": {
"actionhero": ">=28",
"next": ">=9.0.0",
"react": ">=16.6.0",
"react-dom": ">=16.6.0"
},
"devDependencies": {
"@babel/runtime": "^7.19.0",
"@types/jest": "^27.4.0",
"@types/node": "^22.0.2",
"@types/react-dom": "^18.2.8",
"@types/request-promise-native": "^1.0.18",
"actionhero": "^29.0.1",
"ioredis": "^5.2.3",
"jest": "^27.4.5",
"next": "^13.5.3",
"prettier": "^2.7.1",
"react": "18.x.x",
"react-dom": "18.x.x",
"request": "^2.88.2",
"request-promise-native": "latest",
"ts-jest": "^27.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"winston": "^3.8.2",
"ws": "^8.9.0"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run build-api && npm run build-web && npm run copy-dist",
"build-api": "cd api && rm -rf dist && tsc --declaration",
"build-web": "cd web && next build",
"copy-dist": "rm -rf dist && cp -r api/dist dist",
"start": "cd api && actionhero start",
"dev": "cd api && ts-node-dev --transpile-only --ignore-watch=\"../web\" --no-deps --notify=false ./src/server.ts",
"test": "npm run test-api && npm run test-web",
"pretest": "npm run lint && npm run build",
"test-api": "cd api && jest",
"test-web": "cd web && jest",
"lint": "npm run lint-api && npm run lint-web",
"lint-api": "cd api && prettier --check src __tests__",
"lint-web": "cd web && prettier --check pages"
},
"dependencies": {
"@types/glob": "^8.0.0"
}
}