-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.3 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
{
"name": "cxjs-tailwind-template",
"version": "1.0.1",
"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": "^1.0.5",
"casual": "^1.6.2",
"core-js": "^3.20.3",
"cx": "^21.12.0",
"cx-diagrams": "^22.3.2",
"cx-react": "^17.10.0",
"heroicons": "^1.0.5",
"prosemirror-example-setup": "^1.1.2",
"prosemirror-markdown": "^1.7.0",
"prosemirror-schema-basic": "^1.1.2",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.23.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regexparam": "^2.0.0",
"tailwindcss": "^3.0.16",
"uid": "^2.0.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"babel-loader": "^8.2.3",
"babel-preset-cx-env": "^21.3.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.1",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"cx-scss-manifest-webpack-plugin": "^18.6.0",
"devcert": "^1.2.0",
"esbuild-loader": "^2.18.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"inline-manifest-webpack-plugin": "^4.0.0",
"json-loader": "^0.5.4",
"mini-css-extract-plugin": "^2.5.2",
"msw": "^0.36.7",
"node-sass": "^7.0.1",
"office-addin-dev-certs": "^1.7.6",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"msw": {
"workerDirectory": "public"
}
}