forked from openradx/adit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.31 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
{
"name": "adit",
"version": "0.0.1",
"description": "JS dependencies for ADIT",
"repository": {
"type": "git",
"url": "git+https://github.com/medihack/adit.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/medihack/adit/issues"
},
"homepage": "https://github.com/medihack/adit#readme",
"dependencies": {
"alpinejs": "^2.8.2",
"bootstrap": "^4.6.1",
"bootstrap-icons": "^1.8.1",
"bootswatch": "^4.6.1",
"jquery": "^3.6.0",
"morphdom": "^2.6.1"
},
"scripts": {
"copy": "npm run copy:jquery && npm run copy:bootstrap && npm run copy:bootswatch && npm run copy:alpine && npm run copy:morphdom",
"copy:jquery": "cp node_modules/jquery/dist/jquery.js adit/static/vendor/",
"copy:bootstrap_css": "cp node_modules/bootstrap/dist/css/bootstrap.css* adit/static/vendor/",
"copy:bootstrap_js": "cp node_modules/bootstrap/dist/js/bootstrap.bundle.js* adit/static/vendor/",
"copy:bootstrap": "npm run copy:bootstrap_css && npm run copy:bootstrap_js",
"copy:bootswatch": "cp node_modules/bootswatch/dist/flatly/bootstrap.css adit/static/vendor/",
"copy:alpine": "cp node_modules/alpinejs/dist/alpine*.js adit/static/vendor/",
"copy:morphdom": "cp node_modules/morphdom/dist/morphdom-umd.js adit/static/vendor/"
}
}