forked from f500/elewant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.33 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
{
"name": "elewant",
"description": "The ElePHPant exchange program",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.1.3",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"jquery-easing": "0.0.1",
"load-grunt-tasks": "^3.5.2",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-exec": "^3.0.0",
"popper.js": "^1.11.1",
"autoprefixer": "^7.1.2",
"clean-css-cli": "^4.1.6",
"node-sass": "^4.5.3",
"postcss-cli": "^4.1.0",
"uglify-js": "^3.0.27",
"easy-autocomplete": "^1.3.5"
},
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:f500/elewant.git"
},
"scripts": {
"clean-css": "cleancss --skip-advanced --source-map --output public/build/css/elewant.min.css public/build/css/elewant.css",
"postcss": "postcss --config node_modules/bootstrap/build/postcss.config.js --replace public/build/css/*.css",
"sass": "node-sass --output-style expanded --source-map true --precision 6 src/Elewant/Webapp/Application/Resources/assets/scss/elewant.scss public/build/css/elewant.css",
"uglify": "uglifyjs --compress warnings=false --mangle --comments '/^!/' --output public/build/js/elewant.min.js public/build/js/elewant.js"
}
}