forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "@activeadmin/activeadmin",
"version": "3.0.0",
"description": "The administration framework for Ruby on Rails.",
"main": "app/assets/javascripts/active_admin.js",
"type": "module",
"files": [
"app/assets/javascripts/*.js",
"src/**/*"
],
"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": "htts://activeadmin.info",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.46.0",
"gherkin-lint": "^4.2.2",
"rollup": "^3.27.0"
},
"scripts": {
"gherkin-lint": "gherkin-lint",
"build": "rollup --config rollup.config.js",
"eslint": "eslint .",
"prepublishOnly": "rm -rf src && cp -R app/javascript/active_admin src && cp -R app/assets/stylesheets/active_admin src/scss"
},
"dependencies": {
"@rails/ujs": "^7.0.6",
"flowbite": "^1.7.0",
"tailwindcss": "^3.3.3"
}
}