forked from calebschoepp/canvasync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "app",
"private": "true",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/turbo-rails": "^7.1.1",
"@rails/actioncable": "^7.0.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.1",
"autoprefixer": "^10.4.2",
"esbuild": "^0.14.14",
"paper": "^0.12.15",
"pdfjs-dist": "^2.13.216",
"postcss": "^8.4.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"stimulus-dropdown": "^2.0.0",
"tailwindcss": "^3.0.18"
},
"engines": {
"node": "^16.14.0"
},
"scripts": {
"test": "jest",
"test:update": "jest --updateSnapshot",
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds",
"build:css": "tailwindcss -i ./app/assets/stylesheets/application.tailwind.css -o ./app/assets/builds/application.css"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/react": "^12.1.4",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
}
}