-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.5 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
{
"name": "sample-app-my-connect",
"private": "true",
"dependencies": {
"@rails/actioncable": "8.0.0",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"dotenv": "^16.4.5",
"email-validator": "^2.0.4",
"esbuild": "^0.17.19",
"eslint": "^7.32.0 || ^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-watch": "^8.0.0",
"html-react-parser": "^5.1.18",
"i18next": "^23.16.5",
"i18next-async-storage-backend": "^1.0.2",
"i18next-http-backend": "^2.6.2",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-i18next": "^15.1.1",
"react-router-dom": "^6.28.0",
"remount": "^1.0.0",
"sass": "^1.80.7",
"tiny-glob": "^0.2.9"
},
"scripts": {
"build": "node esbuildScript/build.js",
"build:watch": "node esbuildScript/build.js --watch",
"build:css": "sass ./app/assets/stylesheets/application.sass.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"build:css:watch": "sass ./app/assets/stylesheets/application.sass.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules --watch",
"lint": "npx esw app/javascript/** "
},
"devDependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0"
}
}