-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "gifp",
"version": "0.0.0",
"description": "online gif player",
"type": "module",
"scripts": {
"// build": "esr -P ./script/tsconfig.json ./script/build.ts",
"build": "esr ./script/build.ts",
"watch": "chokidar \"src/**/*\" -c \"DEBUG=true npm run build\" --initial --debounce 1000",
"serve": "http-server ./public -p 3050 --proxy http://localhost:3050? -c-1",
"proxy": "esr ./server/proxy.ts",
"start": "concurrently -p '{time} {name}' -t 'HH:mm:ss.SSS' -c green,yellow,blue npm:watch npm:serve npm:proxy"
},
"author": "kena0ki",
"repository": {
"type": "git",
"url": "git+https://github.com/kena0ki/gifp.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.6",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^6.2.1",
"esbuild": "^0.12.26",
"esbuild-plugin-vue-iii": "^0.5.0",
"esbuild-runner": "^2.2.1",
"eslint": "^7.32.0",
"http-server": "^14.0.0",
"typescript": "^4.4.2",
"yargs": "^17.1.1"
},
"dependencies": {
"gifuct-js": "^2.1.1",
"vue": "^3.2.11"
},
"engines": {
"node": ">=12 <15"
}
}