-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 809 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "light-surfers",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"build": "cp -r static/* build && esbuild src/main.ts --bundle --sourcemap --minify --outfile=build/main.js",
"watch": "cp -r static/* build && esbuild src/main.ts --bundle --sourcemap --minify --watch --outfile=build/main.js",
"start": "http-server build -c-1",
"dev": "concurrently --kill-others 'npm run watch' 'npm run start'",
"clean": "rm -r build/*",
"production": "cp -r static/* docs && esbuild src/main.ts --bundle --sourcemap --minify --outfile=docs/main.js"
},
"author": "Michael Emhofer",
"license": "UNLICENSED",
"devDependencies": {
"concurrently": "^7.2.2",
"esbuild": "^0.14.46",
"http-server": "^14.1.1",
"typescript": "^4.7.4"
}
}