-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.64 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
{
"name": "app",
"dependencies": {
"@hotwired/stimulus": "^3.2.1",
"@hotwired/turbo-rails": "^7.2.5",
"@popperjs/core": "^2.11.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.10.3",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"esbuild": "^0.17.10",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jquery": "^3.6.4",
"ky": "^0.33.3",
"local-time": "^2.1.0",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.43",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"typescript": "^4.9.5"
},
"license": "MIT",
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=assets --loader:.js=jsx",
"build:css": "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"check-types": "tsc --project tsconfig.json --noEmit --watch --preserveWatchOutput",
"lint": "node_modules/.bin/eslint app/javascript"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-react": "^7.18.6"
}
}