-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "notion-jsx",
"version": "1.2.0",
"description": "A super fast plugin to convert your notion page to corresponding JSX, with customizable styles",
"main": "dist/bundle.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"compilerOptions": {
"outDir": "./dist",
"declaration": true
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/theonly1me/notion-jsx.git"
},
"keywords": [
"React",
"Notion",
"JSX",
"CMS",
"JavaScript",
"TypeScript"
],
"author": "Atchyut Preetham Pulavarthi",
"license": "MIT",
"bugs": {
"url": "https://github.com/theonly1me/notion-jsx/issues"
},
"homepage": "https://github.com/theonly1me/notion-jsx#readme",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/prismjs": "^1.26.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.7",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.3.0",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@notionhq/client": "^2.2.14",
"lodash": "^4.17.21",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-icons": "^4.12.0",
"uuid": "^9.0.1"
}
}