-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
64 lines (64 loc) · 2.08 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
{
"name": "convene",
"version": "0.1.0",
"description": "Community owned tools that bring people together, both online and off",
"exports": "./index.js",
"type": "module",
"engines": {
"node": "^18.8",
"yarn": "^1.22"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"build:css": "postcss --config postcss.config.cjs ./app/assets/stylesheets/application.postcss.css -o ./app/assets/builds/application.css",
"autoformat": "prettier --write './**/*.{scss,css,js}'",
"webpack:analyze": "yarn webpack:build_json && yarn webpack:analyze_json",
"webpack:build_json": "webpack --profile --json > webpack-stats.json",
"webpack:analyze_json": "webpack-bundle-analyzer webpack-stats.json public/packs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zinc-collective/convene.git"
},
"keywords": [
"community",
"events",
"infrastructure"
],
"author": "Zinc Collective, LLC",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/zinc-collective/convene/issues"
},
"homepage": "https://github.com/zinc-collective/convene#readme",
"devDependencies": {
"prettier": "^3.3.3",
"webpack-bundle-analyzer": "^4.10.2"
},
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo-rails": "^8.0.12",
"@rails/actioncable": "^7.2.200",
"@rails/actiontext": "^7.2.200",
"@rails/activestorage": "^7.2.200",
"@rails/request.js": "^0.0.11",
"@stimulus-components/sortable": "^5.0.1",
"@sentry/browser": "^8.36.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@webpack-cli/serve": "^2.0.5",
"autoprefixer": "^10.4.20",
"event-target-shim": "^6.0.2",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^16.1.0",
"sortablejs": "^1.15.3",
"postcss-preset-env": "^10.0.8",
"tailwindcss": "^3.4.14",
"trix": "^2.1.8",
"webpack": "^5.76.0",
"webpack-cli": "^5.1.4"
}
}