-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "beautify-post",
"version": "1.2.0",
"description": "Web extension that allows to bold and italicize text on the LinkedIn website.",
"repository": {
"type": "git",
"url": "git+https://github.com/viclafouch/beautify-post.git"
},
"author": "Victor de la Fouchardiere",
"license": "ISC",
"bugs": {
"url": "https://github.com/viclafouch/beautify-post/issues"
},
"homepage": "https://www.beautify-post.app",
"keywords": [
"extension",
"chrome",
"react",
"linkedin",
"beautify",
"post",
"bold",
"italic"
],
"scripts": {
"dev": "npm run dev:chrome",
"dev:chrome": "npx cross-env TARGET=chrome webpack --mode=development",
"build": "npm-run-all -n build:*",
"build:chrome": "npx cross-env TARGET=chrome webpack --mode=production",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"publish": "ts-node -T tasks/publish.ts",
"lint": "tsc --noEmit && eslint . --ext .js,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@emotion/babel-plugin": "11.10.5",
"@emotion/babel-preset-css-prop": "11.10.0",
"@types/adm-zip": "0.5.0",
"@types/copy-webpack-plugin": "8.0.1",
"@types/jest": "29.2.4",
"@types/node": "^18.11.17",
"@types/react-dom": "18.0.10",
"@types/webpack": "5.28.0",
"@types/webpack-bundle-analyzer": "4.6.0",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"@viclafouch/eslint-config-viclafouch": "3.8.1",
"adm-zip": "0.5.10",
"babel-loader": "9.1.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "11.0.0",
"eslint": "8.30.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"jest-environment-jsdom-global": "4.0.0",
"jest-extended": "3.2.0",
"npm-run-all": "4.1.5",
"open": "8.4.0",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "5.0.1"
},
"dependencies": {
"@emotion/css": "11.10.5",
"@emotion/react": "11.10.5",
"@fortawesome/fontawesome-svg-core": "6.2.1",
"@fortawesome/free-solid-svg-icons": "6.2.1",
"@fortawesome/react-fontawesome": "0.2.0",
"dotenv": "16.0.3",
"react": "18.2.0",
"react-detect-click-outside": "1.1.7",
"react-dom": "18.2.0"
}
}