forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.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
{
"name": "@activeadmin/activeadmin",
"version": "4.0.0-beta9",
"description": "The administration framework for Ruby on Rails.",
"main": "dist/active_admin.js",
"type": "module",
"files": [
"dist/**/*.js",
"plugin.js",
"vendor/javascript/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/activeadmin/activeadmin.git"
},
"keywords": [
"administration",
"administrative",
"rails"
],
"author": "David Rodríguez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/activeadmin/activeadmin/issues"
},
"homepage": "https://activeadmin.info",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"eslint": "^9.8.0",
"gherkin-lint": "^4.2.2",
"rollup": "^4.19.2",
"tailwindcss": "^3.3.5"
},
"scripts": {
"gherkin-lint": "gherkin-lint",
"lint": "eslint .",
"prebuild": "npm run lint && rm -rf dist",
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@rails/ujs": "7.1.2",
"flowbite": "2.3.0"
}
}