-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 KB
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
37
38
{
"name": "web-linux",
"version": "1.0.0",
"description": "Web page that looks like a linux desktop",
"license": "UNLICENSED",
"private": false,
"author": {
"name": "Edixon Piña",
"email": "edixonalbertto@gmail.com"
},
"scripts": {
"lint": "prettier --write public/index.html src/**/*.{js,scss}",
"sass-watch": "sass --watch src/scss/main.scss:public/static/css/main.css",
"sass-build": "sass --style=compressed --no-source-map src/scss/main.scss:public/static/css/main.css",
"serve": "live-server ./public --host=localhost --port=5500",
"bundle": "node tools/createBundle.js",
"build": "npm run bundle && npm run sass-build",
"js-watch": "nodemon -e js,json -w src --exec \"npm run bundle\"",
"dev": "concurrently \"npm run sass-watch\" \"npm run js-watch\" \"npm start\"",
"start": "npm run serve"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"concurrently": "^6.1.0",
"envify": "^4.1.0",
"live-server": "^1.2.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sass": "^1.32.12"
},
"engines": {
"node": "^12.18.0",
"npm": "^6.14.0"
}
}