32 lines
1.1 KiB
JSON
32 lines
1.1 KiB
JSON
{
|
|
"name": "canape",
|
|
"version": "0.0.1",
|
|
"description": "``` make dev ```",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build-js": "mkdir -p ./static/js & node node_modules/.bin/browserify src/js/app.js -o static/js/app.js",
|
|
"build-less": "mkdir -p ./static/css & node ./node_modules/.bin/lessc --include-path=./node_modules src/less/app.less static/css/app.css",
|
|
"build-font": "mkdir ./static & node ./node_modules/.bin/fontify",
|
|
"watch-js": "node ./node_modules/.bin/nodemon -e js -w src/js/app.js -x 'npm run build-js'",
|
|
"watch-less": "node ./node_modules/.bin/nodemon -e less -w src/less/app.less -x 'npm run build-less'",
|
|
"build": "npm run build-js & npm run build-less & npm run build-font",
|
|
"watch": "npm run watch-js & npm run watch-less"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "ssh://git@gitlab.quimbo.fr:5022/odwrtw/canape-sql.git"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bootstrap": "^3.3.6",
|
|
"jquery": "^2.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^13.0.1",
|
|
"fontify": "0.0.2",
|
|
"less": "^2.7.1",
|
|
"nodemon": "^1.9.2"
|
|
}
|
|
}
|