forked from codaxy/cx-school-demo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "cx-school-todo",
"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": "^1.0.4",
"casual": "^1.6.2",
"core-js": "^3.18.3",
"cx": "^21.10.1",
"cx-react": "^17.10.0",
"heroicons": "^1.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regexparam": "^2.0.0",
"tailwindcss": "^2.2.16",
"uid": "^2.0.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.15.8",
"babel-loader": "^8.2.2",
"babel-preset-cx-env": "^21.3.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"cx-scss-manifest-webpack-plugin": "^18.6.0",
"devcert": "^1.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"inline-manifest-webpack-plugin": "^4.0.0",
"json-loader": "^0.5.4",
"mini-css-extract-plugin": "^2.4.2",
"msw": "^0.35.0",
"node-sass": "^6.0.1",
"office-addin-dev-certs": "^1.7.0",
"postcss": "^8.3.9",
"postcss-loader": "^6.1.1",
"prettier": "^2.4.1",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"webpack": "^5.58.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"msw": {
"workerDirectory": ""
}
}