-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "stream-together",
"version": "0.3.1",
"scripts": {
"start": "npm run startServer",
"startServer": "ts-node ./src/server/index.ts",
"buildServer": "tsc",
"devServer": "nodemon startServer",
"lint": "eslint src",
"buildUI": "vite build --config src/plugin/user_interface/vite.config.ts",
"devUI": "vite --config src/plugin/user_interface/vite.config.ts",
"buildScriptsAndWrapPlugin": "webpack",
"watchScriptsAndWrapPlugin": "webpack --watch",
"buildPlugin": "npm run buildUI && npm run buildScriptsAndWrapPlugin",
"format": "prettier -w ."
},
"dependencies": {
"uuid": "^8.2.0",
"vue": "^3.0.0-rc.1",
"vue-router": "^4.0.0-beta.13"
},
"devDependencies": {
"@types/chrome": "0.0.122",
"@types/express": "^4.17.6",
"@types/express-ws": "^3.0.0",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.22",
"@types/uuid": "^8.0.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@vue/compiler-sfc": "^3.0.0-rc.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.2",
"express-ws": "^4.0.0",
"json-post-process-webpack-plugin": "^2.0.4",
"lint-staged": "^10.5.3",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"prettier": "^2.2.1",
"sass": "^1.26.10",
"ts-loader": "^8.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"vite": "^1.0.0-rc.1",
"vue-eslint-parser": "^7.1.0",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"ws": "^7.4.6",
"yorkie": "^2.0.0",
"zip-webpack-plugin": "^3.0.0"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src/server"
],
"exec": "npm run startServer",
"ext": "ts"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx,scss,html,md,json,css}": [
"prettier --write --ignore-unknown",
"git add"
]
}
}