-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "botpress-inbox",
"version": "0.1.0",
"private": false,
"dependencies": {
"@botpress/client": "^0.1.1",
"@botpress/messaging-components": "^0.4.3",
"@heroicons/react": "^2.0.18",
"@types/express": "^4.17.17",
"axios": "^1.4.0",
"crypto-js": "^4.1.1",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"p-retry": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-infinite-scroller": "^1.2.6",
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-modal": "^3.16.0",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.8",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"vite-tsconfig-paths": "^3.5.0"
},
"scripts": {
"begin": "npm install && npm run start",
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"build:css": "npx tailwindcss -i ./src/styles/tailwind-input.css -o ./src/styles/tailwind-output.css",
"watch:css": "npx tailwindcss -i ./src/styles/tailwind-input.css -o ./src/styles/tailwind-output.css --watch"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}