-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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
{
"name": "app",
"private": "true",
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/turbo-rails": "^7.1.1",
"@rails/actiontext": "^6.1.5",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"babel-loader": "^8.2.4",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.1",
"chonky": "^2.3.2",
"chonky-icon-fontawesome": "^2.3.2",
"jquery": "^3.6.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-rails-ujs": "^1.1.0",
"react_ujs": "^2.6.2",
"sass": "^1.50.0",
"trix": "^2.0.0-beta.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"build:css": "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"build": "webpack --config webpack.config.js"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
}
}