-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.21 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": "resume-fitter",
"author": "Unartful Labs",
"license": "MIT",
"version": "0.1.1",
"description": "An Extension for Google Chrome to create a tailored resume based upon a job description.",
"main": "popup.js",
"scripts": {
"start": "web-ext run --devtools --target chromium --start-url wikipedia.com --source-dir ./dist",
"lint": "eslint . --ext .ts",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-interactions": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-onboarding": "^8.2.8",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.2.8",
"@storybook/react": "^8.2.8",
"@storybook/react-webpack5": "^8.2.8",
"@storybook/test": "^8.2.8",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.0.268",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.8.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"storybook": "^8.2.8",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"web-ext": "^8.2.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"framer-motion": "^11.5.4"
}
}