forked from zinc-collective/convene
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.1 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
{
"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": "^16.13",
"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",
"test": "cucumber-js --format @cucumber/pretty-formatter --tags 'not @unscheduled and not @wip and not @unimplemented-steps and not @unstarted' --import features/"
},
"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": {
"@cucumber/cucumber": "^8.6.0",
"@cucumber/pretty-formatter": "^1.0.0",
"axios": "^0.27.2",
"axios-case-converter": "^0.9.0",
"change-case": "^4.1.2",
"dotenv": "^16.0.3",
"fs-extra": "^10.1.0",
"geckodriver": "^3.0.2",
"get-urls": "^11.0.0",
"lodash": "^4.17.21",
"promise-retry": "^2.0.1",
"selenium-webdriver": "^4.5.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@hotwired/stimulus": "^3.1.0",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo-rails": "^7.2.0",
"@rails/actioncable": "^7.0.4",
"@rails/activestorage": "^7.0.4",
"@rails/ujs": "^7.0.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@webpack-cli/serve": "^1.7.0",
"autoprefixer": "^10.4.12",
"event-target-shim": "^6.0.2",
"postcss": "^8.4.17",
"postcss-cli": "^10.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.0.0",
"postcss-preset-env": "^7.8.2",
"tailwindcss": "^3.1.8",
"webpack": "^5.65.0",
"webpack-cli": "^4.10.0"
}
}