forked from rubyforgood/casa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 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
{
"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": {
"@fortawesome/fontawesome-free": "^6.2.1",
"@rails/actioncable": "^7.0.4",
"@rails/activestorage": "^7.0.4",
"@rails/ujs": "^7.0.4",
"add2calendar": "^1.1.8",
"bindings": "^1.5.0",
"bootstrap": "4.6.2",
"bootstrap-datepicker": "^1.9.0",
"bootstrap-select": "^1.13.18",
"datatables.net-dt": "^1.13.1",
"esbuild": "^0.17.4",
"faker": "^5.5.3",
"jquery": "^3.6.3",
"lodash": "^4.17.21",
"popper.js": "^1.16.1",
"sass": "^1.57.1",
"select2": "^4.0.13",
"strftime": "^0.10.1",
"sweetalert2": "^11.3.5",
"turbolinks": "^5.2.0"
},
"version": "0.1.0",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"markdown-toc": "^1.2.0",
"standard": "^17.0.0",
"start-server-and-test": "^1.15.2"
},
"standard": {
"globals": [
"$",
"jQuery"
],
"ignore": [
"app/assets/builds/**/*"
]
},
"engines": {
"node": ">=0.12"
}
}