-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 2.17 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
68
{
"name": "resumely-chrome-extension",
"version": "1.0.0",
"description": "Automatically generate resume content using AI with copy/paste functionality.",
"scripts": {
"bundle": "bestzip resumely-dist.zip dist/*",
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack -w --config webpack.dev.js",
"storybook": "start-storybook -p 3000",
"build-storybook": "build-storybook"
},
"author": "David Biga",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.5.5",
"@storybook/addon-docs": "^6.5.5",
"@storybook/addon-essentials": "^6.5.5",
"@storybook/addon-interactions": "^6.5.5",
"@storybook/addon-links": "^6.5.5",
"@storybook/builder-webpack4": "^6.5.5",
"@storybook/builder-webpack5": "^6.5.5",
"@storybook/manager-webpack4": "^6.5.5",
"@storybook/manager-webpack5": "^6.5.5",
"@storybook/react": "^6.5.5",
"@storybook/testing-library": "^0.0.11",
"@types/chrome": "^0.0.60",
"@types/dotenv-webpack": "^7",
"@types/js-yaml": "^4.0.5",
"@types/prop-types": "^15",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"babel-loader": "^8.2.5",
"babel-plugin-typescript-to-proptypes": "^2.0.0",
"bestzip": "^2.2.1",
"css-loader": "^3.4.2",
"dotenv-webpack": "^7.1.0",
"sass-loader": "^13.0.0",
"style-loader": "^0.20.3",
"ts-loader": "^9.3.0",
"typescript": "^3.8.0",
"util": "^0.12.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@mantine/core": "^4.2.6",
"@mantine/hooks": "^4.2.6",
"@react-buddy/ide-toolbox": "^2.1.2",
"@types/moment": "^2.13.0",
"js-yaml": "^4.1.0",
"moment": "^2.29.3",
"openai": "3.2.1",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"sass": "^1.52.1",
"tabler-icons-react": "^1.48.0"
},
"packageManager": "[email protected]"
}