-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 920 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "concierge",
"version": "0.1.0",
"description": "A customizable chat widget for websites",
"main": "dist/concierge.js",
"module": "dist/concierge.esm.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src"
},
"keywords": [
"chat",
"widget",
"ai",
"chatbot",
"customer-service"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.32.1"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "babel-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js?$",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testTimeout": 10000
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.2"
}
}