-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.22 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "cndtattend",
"private": true,
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo-rails": "8.0.23",
"@popperjs/core": "^2.11.8",
"@rails/actioncable": "8.1.200",
"@rails/activestorage": "8.1.200",
"@rails/ujs": "7.1.2",
"@uppy/aws-s3-multipart": "4.1.2",
"@uppy/core": "5.2.0",
"@uppy/dashboard": "5.1.0",
"@uppy/file-input": "^4.1.3",
"@uppy/informer": "^4.2.1",
"@uppy/progress-bar": "^4.2.1",
"@uppy/thumbnail-generator": "^5.0.0",
"@uppy/xhr-upload": "5.1.1",
"autoprefixer": "^10.4.19",
"bootstrap": "5.3.8",
"bootstrap-icons": "^1.11.3",
"cropperjs": "1.6.2",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.4",
"particles.js": "^2.0.0",
"popper.js": "1.16.1",
"postcss": "^8.4.39",
"postcss-cli": "^11.0.0",
"sass": "^1.77.6",
"sass-loader": "^16.0.0",
"sortablejs": "^1.15.3",
"video.js": "8.23.4",
"webpack": "^5.92.1",
"webpack-cli": "^6.0.0",
"webpack-remove-empty-scripts": "^1.0.4"
},
"version": "0.1.0",
"scripts": {
"build": "webpack --config webpack.config.js",
"build:css": "yarn build:css:compile && yarn build:css:prefix",
"build:css:compile": "sass ./app/assets/stylesheets/application.bootstrap.scss:./app/assets/builds/application-bootstrap.css --no-source-map --load-path=node_modules",
"build:css:prefix": "postcss ./app/assets/builds/application-bootstrap.css --use=autoprefixer --output=./app/assets/builds/application-bootstrap.css",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack-bundle-analyzer": "^5.0.0"
}
}