-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "gampage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": "",
"keywords": [],
"author": {
"name": "",
"email": "",
"url": ""
},
"contributors": [],
"scripts": {
"start": "run-p watch watch:styles",
"build": "run-s clean clean:styles build:styles copy",
"build:styles": "sass src/scss/main.scss src/styles/main.css",
"watch": "live-server src",
"watch:styles": "sass src/scss/main.scss src/styles/main.css --watch",
"clean": "rm -rf dist",
"clean:styles": "rm -rf src/styles",
"copy": "mkdir dist && rsync -avr --exclude=\"/scss\" src/ dist",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "run-s build publish",
"publish": "gh-pages -d dist",
"create": "mkdir src && mkdir src/scss && touch src/scss/main.scss && mkdir src/html && touch src/html/index.html && mkdir src/js && touch src/js/index.js"
},
"dependencies": {
"chalk": "^5.3.0",
"readline": "^1.3.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"live-server": "^1.2.2",
"npm-run-all": "^4.1.5",
"sass": "^1.77.8"
}
}