-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 948 Bytes
/
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
{
"name": "random-picker",
"version": "1.0.1",
"description": "くじびきツール",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy-static-resources": "cp index.html docs/; cp style.css docs/",
"build": "npm run copy-static-resources && npx tsc && webpack --mode production",
"serve": "npm run copy-static-resources && npx tsc && npx webpack serve --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motooka/RandomPicker.git"
},
"author": "motooka",
"license": "MIT",
"bugs": {
"url": "https://github.com/motooka/RandomPicker/issues"
},
"homepage": "https://github.com/motooka/RandomPicker#readme",
"devDependencies": {
"path": "^0.12.7",
"typescript": "^4.3.5",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"vue": "^3.1.4"
}
}