-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.3 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
63
64
65
66
67
{
"name": "cumuli-aws-console-chat",
"version": "0.1.7",
"engines": {
"node": ">20.0.0"
},
"dependencies": {
"date-fns": "^2.30.0",
"idb": "^7.1.1",
"jotai": "^2.5.1",
"lodash.debounce": "^4.0.8",
"openai": "^4.23.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"react-use": "^17.4.1",
"styled-components": "^6.1.1",
"uuid": "^9.0.1"
},
"scripts": {
"clean": "rimraf build/*",
"build": "pnpm clean && webpack --mode production",
"prepare-for-upload": "pnpm build && zip -r build-v$(pnpm pkg get version | tr -d '\"').zip build/*",
"watch": "NODE_ENV=development webpack --watch",
"version:patch": "pnpm version patch --no-git-tag-version && node scripts/update-manifest-version.js",
"lint": "pnpm lint:js && pnpm lint:css",
"lint:fix": "pnpm lint:js:fix && pnpm lint:css:fix",
"lint:js": "eslint --ext .ts,.tsx src",
"lint:js:fix": "eslint --fix --ext .ts,.tsx src",
"lint:css": "stylelint 'src/**/*.{ts,tsx}'",
"lint:css:fix": "stylelint 'src/**/*.{ts,tsx}' --fix"
},
"devDependencies": {
"@types/chrome": "^0.0.251",
"@types/lodash": "^4.14.201",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.54.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"eslint-webpack-plugin": "^4.0.1",
"postcss-styled-syntax": "^0.5.0",
"raw-loader": "^4.0.2",
"rimraf": "^5.0.5",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"ts-loader": "^9.5.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}