-
Notifications
You must be signed in to change notification settings - Fork 229
/
package.json
88 lines (88 loc) · 2.26 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "windmill-dashboard-react",
"version": "0.4.0",
"description": "A multi theme, completely accessible, with components and pages examples, (almost) ready for production dashboard.",
"private": true,
"scripts": {
"tailwind:dev": "tailwindcss build src/assets/css/tailwind.css -o src/assets/css/tailwind.output.css",
"tailwind:build": "cross-env NODE_ENV=production postcss src/assets/css/tailwind.css -o src/assets/css/tailwind.output.css",
"prestart": "npm run tailwind:dev",
"start": "react-scripts start",
"prebuild": "npm run tailwind:build",
"build": "react-scripts build",
"cz": "git-cz",
"release": "release-it",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.5.0",
"@testing-library/user-event": "7.2.1",
"@windmill/react-ui": "0.3.1",
"chart.js": "2.9.3",
"classnames": "2.2.6",
"faker": "4.1.0",
"react": "^16.13.1",
"react-chartjs-2": "2.9.0",
"react-dom": "^16.13.1",
"react-focus-lock": "2.4.0",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"react-transition-group": "4.4.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "1.1.4",
"@svgr/webpack": "5.4.0",
"autoprefixer": "9.8.0",
"commitizen": "4.1.2",
"cross-env": "7.0.2",
"cssnano": "4.1.10",
"cz-conventional-changelog": "3.2.0",
"postcss-cli": "7.1.1",
"react-axe": "3.5.2",
"release-it": "13.6.4",
"tailwindcss": "1.4.6"
},
"keywords": [
"windmill",
"dashboard",
"admin",
"tailwind",
"react"
],
"release-it": {
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}