{
"name": "project_p",
"version": "1.2.1",
"description": "",
"main": "index.php",
"scripts": {
"sass-dev": "node-sass --output-style=expanded _dev/scss/main.scss style.css",
"sass-prod": "node-sass --output-style=compressed _dev/scss/main.scss style.css",
"prefix": "postcss style.css --use=autoprefixer --map=false --output=style.css",
"compile-js": "uglifyjs-folder _dev --output main.min.js --pattern '**/*.js'",
"dev": "watch 'npm run sass-dev && npm run compile-js' _dev/*",
"build": "npm run sass-prod && npm run prefix && npm run compile-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorandeloci/project_p.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/victorandeloci/project_p/issues"
},
"homepage": "https://github.com/victorandeloci/project_p#readme",
"dependencies": {
"autoprefixer": "^10.4.14",
"node-sass": "^9.0.0",
"postcss": "^8.4.27",
"postcss-cli": "^10.1.0",
"uglifyjs-folder": "^3.3.0",
"watch": "^1.0.2"
}
}
|