-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 862 Bytes
/
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
{
"name": "langchain-documentQA",
"version": "1.1.2",
"description": "LangChain揭秘之文档QA项目实战",
"dependencies": {
"@chatui/core": "^2.4.2",
"@ice/runtime": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@applint/spec": "^1.2.3",
"@ice/app": "^3.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/node": "^18.11.17",
"eslint": "^8.35.0",
"stylelint": "^15.2.0",
"typescript": "^4.9.5"
},
"scripts": {
"start": "ice start",
"build": "ice build",
"eslint": "eslint ./src --cache --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "npm run eslint -- --fix",
"stylelint": "stylelint \"src/**/*.{css,scss,less}\" --cache",
"stylelint:fix": "npm run stylelint -- --fix"
},
"publishConfig": {
"access": "public"
}
}