-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.09 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "linkedin-notion-job-connector",
"description": "LinkedIn job Notion database connector",
"version": "1.0.0",
"main": "server.ts",
"directories": {
"lib": "libs",
"test": "tests"
},
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"Extension",
"TypeScript",
"Firefox",
"Chrome",
"Brave",
"React"
],
"author": "Tomás Menezes Pereira",
"scripts": {
"build": "npm run clean && webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist/",
"dev": "npm run clean && webpack -w --config webpack/webpack.dev.js",
"test": "jest -i --colors --verbose --coverage --detectOpenHandles --passWithNoTests",
"lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\"",
"prettify": "prettier --write \"src/**/*.ts*\""
},
"dependencies": {
"@headlessui/react": "^0.0.0-insiders.2dbc38c",
"@notionhq/client": "^1.0.4",
"@tryfabric/martian": "^1.2.0",
"html-to-md": "^0.5.7",
"html-to-notion": "^0.2.1",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/chrome": "^0.0.174",
"@types/draft-js": "^0.11.9",
"@types/eslint": "^8.2.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-draft-wysiwyg": "^1.13.4",
"@types/react-test-renderer": "^17.0.1",
"@types/webextension-polyfill": "^0.8.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"autoprefixer": "^10.4.1",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-css-modules": "^2.1.0",
"module-alias": "^2.2.2",
"path-browserify": "^1.0.1",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.9",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4",
"webextension-polyfill-ts": "^0.26.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"_moduleAliases": {}
}