-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1023 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1023 Bytes
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
{
"name": "app",
"private": true,
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.22.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"babel-jest": "^29.7.0",
"esbuild": "^0.25.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"scripts": {
"build": "node esbuild.config.js",
"build:css": "./node_modules/.bin/tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css --minify",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@github/webauthn-json": "^2.1.1",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.12",
"@rails/activestorage": "^7.1.3",
"@rails/request.js": "^0.0.12",
"autoprefixer": "^10.4.20",
"chart.js": "4.5.0",
"lodash.debounce": "^4.0.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17"
}
}