-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.2 KB
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
{
"name": "@bavard/bavard-react",
"version": "0.0.27",
"description": "React components for working with Bavard chatbots",
"scripts": {
"start": "NODE_ENV=development webpack serve",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc --build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"ts:lint": "tsc && npm run lint",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"lint:staged": "lint-staged",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json}'",
"cypress:open": "cypress open --config-file cypress.local.json",
"cypress:test": "start-server-and-test start:test http://localhost:8080 cypress:run",
"cypress:run": "cypress run --config-file cypress.local.json --browser chrome",
"ci:start:test": "CI=true NODE_ENV=development webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bavard-ai/bavard-react.git"
},
"author": "dev@bavard.ai",
"license": "MIT",
"bugs": {
"url": "https://github.com/bavard-ai/bavard-react/issues"
},
"homepage": "https://github.com/bavard-ai/bavard-react#readme",
"engines": {
"node": ">=12"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@bavard/eslint-config-typescript": "^1.0.7",
"@emotion/react": "^11.7.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"babel-jest": "^27.4.6",
"cypress": "^9.2.0",
"eslint-plugin-jest": "^25.3.4",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"process": "^0.11.10",
"react": "*",
"react-dom": "*",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"@bavard/agent-config": "0.1.61",
"@bavard/widget-loader": "0.0.33",
"react-use-object-state": "^1.1.4",
"use-debounce": "^7.0.1",
"util": "^0.12.4"
}
}