-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·63 lines (63 loc) · 2.18 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
{
"name": "tailwind-wordpress",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=development webpack --mode=development --config webpack.config.js",
"build-watch": "cross-env NODE_ENV=development webpack -w --mode=development --config webpack.config.js",
"prod": "cross-env NODE_ENV=production webpack --mode production",
"webpack-dev": "webpack --mode=development --config webpack.config.js --watch",
"browser-sync": "node bs.js",
"dev": "npm-run-all -p webpack-dev browser-sync",
"copy-devx": "cp -r node_modules/devextreme/dist/css/icons src/css/ && cp -r node_modules/devextreme/dist/css/fonts src/css/",
"copy-tailwind-inc": "cp node_modules/tailwindcss/tailwind.css src/css/inc/_tailwind.css"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/ui": "^0.7.2",
"@types/jquery": "^3.5.1",
"@types/lodash": "^4.14.161",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-highlight-words": "^0.16.1",
"@types/webpack": "^4.41.21",
"@types/webpack-env": "^1.15.2",
"@wordpress/create-block": "^0.16.0",
"@wordpress/scripts": "^12.1.1",
"alpinejs": "^2.6.0",
"autoprefixer": "^9.8.6",
"browser-sync": "^2.26.12",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"ignore-emit-webpack-plugin": "^2.0.6",
"lodash": "^4.17.20",
"mini-css-extract-plugin": "^1.3.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"postcss-comment": "^2.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^4.2.0",
"precss": "^4.0.0",
"stimulus": "^1.1.1",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.2",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@tailwindcss/typography": "^0.4.0",
"devextreme": "20.1-stable",
"devextreme-react": "20.1-stable",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-highlight-words": "^0.16.0"
}
}