generated from rheniumNV/mirage-x-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.54 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
{
"name": "ai-console",
"version": "1.1.2",
"scripts": {
"start": "node --require dotenv/config ./dist/server/index.js",
"build": "run-p build:*",
"build:res": "tsc --project ./tsconfig.res.json && node --require dotenv/config ./dist/res/index.js",
"build:server": "tsc --project ./tsconfig.main.json",
"dev": "run-p dev:*",
"dev:res": "tsc-watch --project ./tsconfig.res.json --onSuccess \"node --require dotenv/config ./dist/res/index.js\"",
"dev:server": "tsc-watch --project ./tsconfig.main.json --onSuccess \"npm start\"",
"test": "jest",
"unitPackage:sync": "ts-node -P ./tsconfig.dev.json ./src/dev/unitPackage",
"feedback:all": "npm run feedback:fetch & npm run feedback:attachBase & npm run feedback:attachUnit .*",
"feedback:base": "npm run feedback:fetch & npm run feedback:attachBase",
"feedback:unit": "npm run feedback:fetch & npm run feedback:attachUnit",
"feedback:fetch": "ts-node -P ./tsconfig.dev.json ./src/dev/resFeedback/fetch",
"feedback:attachBase": "ts-node --require dotenv/config -P ./tsconfig.dev.json ./src/dev/resFeedback/attachBase",
"feedback:attachUnit": "ts-node --require dotenv/config -P ./tsconfig.dev.json ./src/dev/resFeedback/attachUnit",
"updateCloudVariable": "ts-node --require dotenv/config -P ./tsconfig.dev.json ./src/dev/updateCloudVariable",
"format": "prettier --write ./src/**/*.{ts,tsx,json}",
"prepare": "npx husky install"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.3.0",
"@types/react-reconciler": "^0.28.8",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"brson.js": "^1.0.4",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"react-dom": "^18.3.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4",
"yaml": "^2.3.1"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.22.0",
"axios": "^1.4.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.18.2",
"jose": "^4.14.6",
"json2emap": "^0.2.0",
"neos-script": "^0.1.8",
"openai": "^4.47.3",
"react": "^18.2.0",
"react-reconciler": "^0.29.0",
"uuid": "^9.0.0",
"ws": "^8.13.0"
},
"volta": {
"node": "20.10.0"
},
"lint-staged": {
"*.{ts,tsx,json}": [
"prettier --write"
]
}
}