forked from Hexlet/hexlet-sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.51 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"heroku-postbuild": "npm run production",
"lint-js": "npx eslint --ext .jsx,.js ./resources/js",
"lint-js-fix": "npx eslint --fix --ext .jsx,.js ./resources/js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@reduxjs/toolkit": "^1.6.0",
"axios": "^0.21",
"bootstrap": "^4.6.0",
"codemirror": "^5.61.1",
"highlight.js": "^11.x",
"i18next": "^20.3.1",
"jquery": "^3.6.0",
"jquery-ujs": "^1.2.3",
"lodash": "^4.17.21",
"popper.js": "^1.16.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.0",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.2",
"react-i18next": "^11.10.0",
"react-redux": "^7.2.4"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"laravel-mix": "^6.0.19",
"laravel-mix-make-file-hash": "^2.2.0",
"resolve-url-loader": "^4.0.0",
"sass": "^1.32.13",
"sass-loader": "^12.x"
},
"engines": {
"node": "14.x"
}
}