-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.29 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": "scribble-by-ravi-jyoti",
"private": true,
"engines": {
"node": "16.13.0",
"npm": "7.x",
"yarn": "1.22.x"
},
"dependencies": {
"@babel/preset-react": "^7.18.6",
"@bigbinary/neeto-icons": "^1.8.39",
"@bigbinary/neetoui": "^4.0.9",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "5.4.3",
"antd": "4.18.7",
"axios": "^0.27.2",
"babel-plugin-js-logger": "^1.0.17",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"classnames": "^2.3.2",
"dayjs": "^1.11.5",
"file-saver": "^2.0.5",
"formik": "2.2.0",
"framer-motion": "^8.0.2",
"js-logger": "^1.6.1",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-query": "^3.39.2",
"react-router-dom": "5.2.0",
"react-router-nav-prompt": "0.4.1",
"react-toastify": "8.0.2",
"react_ujs": "^2.6.2",
"remixicon": "^2.5.0",
"tailwindcss": "1.9.6",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"yup": "^0.32.11",
"zustand": "^4.1.5"
},
"version": "0.1.0",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jam3": "^0.2.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"webpack-dev-server": "^3"
},
"scripts": {
"prepare": "husky install"
},
"lint-staged": {
"app/javascript/src/**/*.{js,jsx,json}": [
"prettier --write",
"eslint --fix"
],
"{package.json,.eslintrc.js,.prettierrc.js}": [
"prettier --write",
"eslint --fix"
],
"./**/*.rb": [
"bundle exec rubocop -a"
],
"{Gemfile,Rakefile,config.ru}": [
"bundle exec rubocop -a"
]
}
}