forked from codaxy/cxjs-tailwindcss-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.65 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.65 KB
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
{
"name": "cxjs-tailwind-template",
"version": "1.0.0",
"description": "A sample application demoing integration of CxJS and Tailwind CSS.",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config config/webpack.dev.js --open",
"build": "webpack --config config/webpack.prod.js",
"analyze": "webpack --config config/webpack.analyze.js"
},
"keywords": [],
"author": "Marko Stijak",
"license": "MIT",
"dependencies": {
"@heroicons/react": "^2.1.1",
"@monaco-editor/react": "4.5.1",
"casual": "^1.6.2",
"core-js": "^3.35.0",
"cx": "^23.12.3",
"cx-react": "^17.10.1",
"monaco-editor": "0.39.0",
"monaco-editor-webpack-plugin": "7.0.1",
"prosemirror-example-setup": "^1.2.2",
"prosemirror-markdown": "^1.12.0",
"prosemirror-schema-basic": "^1.2.2",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.32.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regexparam": "^3.0.0",
"swc-plugin-transform-cx-imports": "^24.3.3",
"swc-plugin-transform-cx-jsx": "^24.3.3",
"tailwindcss": "^3.4.0",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-syntax-typescript": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@swc/core": "^1.3.102",
"babel-loader": "^9.1.3",
"babel-preset-cx-env": "^24.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cx-scss-manifest-webpack-plugin": "^18.6.0",
"devcert": "^1.2.2",
"esbuild-loader": "^4.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"inline-manifest-webpack-plugin": "^4.0.2",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.7.6",
"msw": "^2.0.11",
"office-addin-dev-certs": "^1.12.0",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.4",
"prettier": "^2.8.8",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.3",
"swc-loader": "^0.2.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"msw": {
"workerDirectory": "public"
},
"packageManager": "[email protected]+sha256.f3cc0eda8e5560e529c7147565b30faa43b4e472d90e8634d7134a37c7f59781"
}