-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "project_p",
"version": "1.6.3",
"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"
}
}