-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "skybeje",
"version": "0.8.0",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/iwatendo/skybeje"
},
"scripts": {
"start": "http-server ./dist/ -p 8080 -c-1",
"dev": "npm-run-all -s webpack copy:lib copy:image copy:src setversion",
"prod": "npm-run-all -s clean webpack:release copy:lib copy:image copy:src setversion",
"setversion": "node dev/SetVersion.js",
"clean": "rimraf dist/*",
"webpack": "webpack --colors --config ./webpack.config.dev.js",
"webpack:release": "webpack --colors --config ./webpack.config.release.js",
"copy:lib": "cpx \"./src/Page/Lib/*\" ./dist/lib",
"copy:image": "cpx \"./src/Page/Image/*\" ./dist/image",
"copy:src": "cpx \"./src/Page/**/{*.html,*.css,*.map,*.json}\" ./dist"
},
"dependencies": {
"@msgpack/msgpack": "^1.12.2",
"co": "^4.6.0",
"cpx": "^1.5.0",
"http-server": "^0.12.3",
"npm-run-all": "^4.1.5",
"peerjs": "^1.3.1",
"platform": "^1.3.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.2",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"youtube": "^0.1.0"
},
"devDependencies": {
"@types/jquery": "^3.5.0",
"@types/platform": "^1.3.2",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/youtube": "^0.0.38"
}
}