-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
67 lines (67 loc) · 2.14 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
{
"private": true,
"name": "hexlet-sicp",
"type": "module",
"version": "1.0.0",
"simple-git-hooks": {
"pre-push": "make pre-push-hook"
},
"scripts": {
"heroku-postbuild": "npm run build",
"lint-js": "node_modules/.bin/eslint --ext .jsx,.js ./resources/js",
"lint-js-fix": "node_modules/.bin/eslint --fix --ext .jsx,.js ./resources/js",
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"@codemirror/language": "^6.9.3",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/state": "^6.3.3",
"@codemirror/view": "^6.22.2",
"@popperjs/core": "^2.11.8",
"@rails/ujs": "^7.1.3-4",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6",
"bootstrap": "^5.3.2",
"cm6-theme-basic-dark": "^0.2.0",
"cm6-theme-basic-light": "^0.2.0",
"codemirror": "^6.0.1",
"date-fns": "^2.30.0",
"highlight.js": "^11.x",
"i18next": "^23.7.8",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-countdown": "^2.3.5",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"react-redux": "^9.0.4",
"react-syntax-highlighter": "^15.5.0",
"vite": "^5.2.12"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@shufo/prettier-plugin-blade": "^1.13.4",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"laravel-vite-plugin": "^1.0.4",
"npm-check-updates": "^16.14.11",
"prettier": "^3.1.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.5",
"sass-loader": "^13.x",
"simple-git-hooks": "^2.9.0"
},
"engines": {
"node": "20.x"
}
}