-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "@pcdc/gearbox",
"version": "1.0.2",
"private": true,
"dependencies": {
"@fontsource/lato": "^4.5.10",
"@react-awesome-query-builder/core": "^6.2.0",
"@react-awesome-query-builder/ui": "^6.2.0",
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.12",
"html-react-parser": "^4.2.1",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^17.0.2",
"react-feather": "^2.0.10",
"react-ga4": "^2.1.0",
"react-multi-select-component": "^4.3.4",
"react-router-dom": "^6.11.1",
"react-scripts": "^5.0.1",
"react-tabs": "^4.3.0",
"react-tooltip": "^4.4.3",
"tailwindcss": "^3.2.1"
},
"scripts": {
"watch:tailwind": "postcss src/tailwind.css -o src/index.css --watch",
"start": "react-scripts start",
"dev": "REACT_APP_VERSION=$npm_package_version concurrently \"npm:start\" \"npm:watch:tailwind\"",
"prebuild": "postcss src/tailwind.css -o src/index.css --env production",
"build": "REACT_APP_VERSION=$npm_package_version react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier src --write",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"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"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-controls": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addons": "^6.5.0-beta.6",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.5",
"@types/react": "^17.0.50",
"@types/react-beautiful-dnd": "^13.1.6",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"overrides": {
"react-refresh": "0.11.0"
}
}