-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"name": "ai-boss",
"version": "1.0.0",
"description": "ai-boss",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lastIndexOf/ai-boss.git"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.3",
"@mui/lab": "5.0.0-alpha.159",
"@mui/material": "^5.15.3",
"@mui/styled-engine-sc": "6.0.0-alpha.11",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.308.0",
"openai": "^4.24.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.4",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@modern-js/eslint-config": "^2.45.0",
"@types/chrome": "0.0.158",
"@types/jest": "^29.5.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.9.0",
"glob": "^7.1.6",
"jest": "^29.5.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.0",
"typescript": "^5.0.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}