forked from platanus/activeadmin_addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1011 Bytes
/
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
{
"name": "activeadmin_addons",
"version": "1.0.0",
"description": "Set of addons to help with the activeadmin ui",
"main": "src/all.js",
"files": [
"src/*"
],
"repository": "https://github.com/platanus/activeadmin_addons.git",
"author": "Platanus <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup --config rollup.config.js",
"prepublishOnly": "rm -rf src && mkdir src && cp -R app/assets/stylesheets/activeadmin_addons src/stylesheets && cp src/stylesheets/imports/webpack/*.scss src/stylesheets/imports && cp -R app/javascript/activeadmin_addons/* src"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"common-tags": "^1.8.0",
"rollup": "^2.26.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"jquery-datetimepicker": "^2.5.21",
"select2": "^4.0.13"
}
}