-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 876 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 876 Bytes
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
{
"name": "fe-guide",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./src/webpack/dist/index.bundle.js",
"babel": {
"presets": []
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"lint:fix": "eslint . --fix",
"source": "node ./src/sourcemap/test.js",
"test": "node ./src/test/src/test.js",
"test:ndb": "ndb ./src/test/src/test.js",
"test:debug": "nodemon ./src/test/src/server.js",
"commit": "git-cz"
},
"ava": {
"files": [
"test/src/*.js"
],
"sources": [
"bin/**/*.js"
]
},
"author": "arnold",
"license": "MIT",
"dependencies": {
"@google/genai": "^1.21.0",
"husky": "^4.3.8",
"node-red": "^1.3.5",
"ollama": "^0.6.0",
"openai": "^6.7.0",
"react": "^16.12.0",
"request": "^2.88.0"
}
}