-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.78 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
{
"name": "udpsync",
"version": "1.0.0",
"description": "Daemon to monitor syncs between a remote and local directory, using udpsend to transfer missing files",
"private": true,
"scripts": {
"build": "tsc && npx webpack",
"//": "nodemon plain js in server/js (only use if there's not typescript in the project)",
"debug": "concurrently npm:tsc-watch npm:webpack-watch npm:nodemon",
"debug-inspect": "concurrently npm:tsc-watch npm:webpack-watch npm:nodemon-inspect",
"debug-inspect-brk": "concurrently npm:tsc-watch npm:webpack-watch npm:nodemon-inspect-brk",
"debug-js": "concurrently npm:webpack-watch npm:nodemon-js",
"debug-js-inspect": "concurrently npm:webpack-watch npm:nodemon-js-inspect",
"debug-js-inspect-brk": "concurrently npm:webpack-watch npm:nodemon-js-inspect-brk",
"tsc-watch": "tsc --watch --incremental",
"webpack-watch": "webpack --color --watch",
"nodemon": "nodemon server/dist/server.js",
"nodemon-inspect": "nodemon --inspect=0.0.0.0:3000 server/dist/server.js",
"nodemon-inspect-brk": "nodemon --inspect-brk= 0.0.0.0:3000 server/dist/server.js",
"nodemon-js": "nodemon --config nodemon-js.json server/src/server.js",
"nodemon-js-inspect": "nodemon --config nodemon-js.json --inspect=0.0.0.0:3000 server/src/server.js",
"nodemon-js-inspect-brk": "nodemon --config nodemon-js.json --inspect-brk=0.0.0.0:3000 server/src/server.js",
"clean": "rm -rf client/dist server/dist"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@graphql-tools/schema": "^9.0.19",
"@hedgedoc/html-to-react": "^1.4.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.3",
"app-module-path": "^2.2.0",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-session-sequelize": "^2.3.0",
"graphiql": "^2.4.4",
"graphql-http": "^1.18.0",
"graphql-type-json": "^0.3.2",
"lodash": "^4.17.21",
"mustache-express": "^1.3.2",
"mysql2": "^2.3.3",
"nocache": "^3.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-toastify": "^9.1.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.31.0",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@types/node": "^20.1.3",
"babel-loader": "^9.1.2",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"depcheck": "^1.4.3",
"html-webpack-plugin": "^5.5.1",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.2",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
}
}