-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "nester",
"version": "1.0.0",
"description": "Pagina de practica",
"main": "index.js",
"browserslist": "last 10 versions",
"scripts": {
"watch:sass": "nodemon -e scss -x \"npm run compile:sass\"",
"compile:sass": "node-sass sass/main.scss css/style.css",
"devserver": "live-server --browser=chrome",
"start": "npm-run-all --parallel devserver watch:sass",
"prefix:css": "postcss css/style.css --use autoprefixer -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.min.css --output-style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jalgoz/Nexter.git"
},
"author": "Jalgoz",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jalgoz/Nexter/issues"
},
"homepage": "https://github.com/Jalgoz/Nexter#readme",
"devDependencies": {
"autoprefixer": "^10.4.2",
"concat": "^1.0.3",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.7",
"postcss-cli": "^9.1.0"
}
}