-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "dinossaurito",
"version": "1.0.0",
"description": "Dinossaurito",
"repository": {
"type": "git",
"url": "git+https://github.com/baragatti/dinossaurito.git"
},
"author": "Lucas Baragatti",
"license": "ISC",
"bugs": {
"url": "https://github.com/baragatti/dinossaurito/issues"
},
"homepage": "https://github.com/baragatti/dinossaurito#readme",
"private": true,
"scripts": {
"start": "run-s watch",
"build": "run-s build:*",
"serve": "browser-sync start -s \"dist\" -f \"dist\"",
"build:assets": "copyfiles -u 1 \"src/**/*.js\" \"src/**/*.css\" \"src/**/*.html\" \"src/**/*.{png,jpg,gif}\" dist",
"build:tsc": "webpack --config webpack.config.js",
"watch:tsc": "webpack --watch --config webpack.config.js",
"watch:assets": "run-s build:assets",
"watch:onchange": "onchange \"src/**/*.js\" \"src/**/*.css\" \"src/**/*.html\" \"src/**/*.{png,jpg,gif}\" -- run-s build:assets",
"watch": "run-p serve watch:*",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"browser-sync": "^2.26.13",
"copyfiles": "^2.4.0",
"gh-pages": "^3.1.0",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"ts-loader": "^5.4.5",
"typescript": "^4.0.5",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}