forked from rubyforgood/casa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "casa",
"private": true,
"scripts": {
"test": "jest",
"lint": "standard",
"lint:fix": "standard --fix",
"toc": "markdown-toc -i README.md",
"build": "./bin/asset_bundling_scripts/build_js.js",
"build:dev": "./bin/asset_bundling_scripts/build_js.js --watch",
"build:css": "sass app/assets/stylesheets/application.scss app/assets/builds/application.css --load-path=node_modules",
"build:css:dev": "sass app/assets/stylesheets/application.scss app/assets/builds/application.css --load-path=node_modules --watch"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@fortawesome/fontawesome-free": "^6.5.2",
"@hotwired/stimulus": "^3.2.2",
"@popperjs/core": "^2.11.8",
"@rails/actioncable": "^7.1.3",
"@rails/actiontext": "^7.1.3",
"@rails/activestorage": "^7.1.3",
"@rails/ujs": "^7.1.3",
"add2calendar": "^1.1.8",
"bindings": "^1.5.0",
"bootstrap": "5.3.3",
"bootstrap-datepicker": "^1.10.0",
"bootstrap-scss": "^5.3.3",
"bootstrap-select": "^1.13.18",
"chart.js": "^4.4.3",
"chartjs-adapter-luxon": "^1.3.1",
"datatables.net-dt": "^1.13.10",
"esbuild": "^0.21.5",
"faker": "^5.5.3",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
"jstz": "^2.1.1",
"lodash": "^4.17.21",
"luxon": "^3.4.0",
"popper.js": "^1.16.1",
"sass": "^1.77.6",
"select2": "^4.0.13",
"select2-bootstrap-5-theme": "^1.3.0",
"stimulus-rails-nested-form": "^4.1.0",
"strftime": "^0.10.3",
"sweetalert2": "^11.3.5",
"tom-select": "^2.3.1",
"trix": "^2.1.1",
"turbolinks": "^5.2.0"
},
"version": "0.1.0",
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"markdown-toc": "^1.2.0",
"standard": "^17.1.0",
"start-server-and-test": "^2.0.4"
},
"standard": {
"globals": [
"$",
"jQuery"
],
"ignore": [
"app/assets/builds/**/*"
]
},
"engines": {
"node": ">=16"
}
}