-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
{
"name": "@aventum/dashboard",
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "Mohammed Al-Mahdawi",
"email": "[email protected]",
"url": "https://al-mahdawi.com"
},
"dependencies": {
"@aventum/hooks": "^1.0.8",
"@hapi/joi": "^17.1.1",
"@tailwindcss/ui": "^0.5.0",
"@tinymce/tinymce-react": "^3.6.0",
"axios": "^0.19.2",
"boolean": "^3.0.1",
"cssnano": "^4.1.10",
"date-fns": "^2.14.0",
"dompurify": "^2.0.11",
"dropzone": "^5.7.0",
"fuse.js": "^6.4.3",
"i18next": "^19.4.4",
"i18next-browser-languagedetector": "^4.1.1",
"i18next-xhr-backend": "^3.2.2",
"lodash": "^4.17.15",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-datepicker": "^3.0.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-i18next": "^11.4.0",
"react-icons": "^3.10.0",
"react-json-view": "^1.19.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"uuid": "^8.0.0"
},
"scripts": {
"start": "npm-run-all --parallel watch:css start:react",
"build": "npm-run-all build:tw build:react",
"build:tw": "postcss ./src/tailwind-own.css -o src/tailwind.css --env production",
"build:css": "postcss ./src/tailwind-own.css -o src/tailwind.css",
"watch:css": "postcss ./src/tailwind-own.css -o src/tailwind.css -w",
"start:react": "react-scripts start",
"build:react": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"autoprefixer": "^9.8.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"prettier": "^2.0.5",
"tailwindcss": "^1.6.0",
"tailwindcss-dir": "^4.0.0"
}
}