forked from TMS-Uni-Stuttgart/Tutor-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.96 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
{
"private": true,
"version": "2.0.0",
"workspaces": [
"client",
"server",
"dev-tools"
],
"scripts": {
"start:client": "yarn workspace client start",
"start:server": "yarn workspace server start",
"format": "yarn workspaces run format",
"build": "yarn build:client && yarn build:server && yarn copy:app",
"build:client": "cd ./client && yarn build",
"build:server": "cd ./server && yarn build",
"ts:check": "yarn workspaces run ts:check",
"ts:check:client": "echo Type checking client && cd ./client && yarn ts:check",
"ts:check:server": "echo Type checking server && cd ./server && yarn ts:check",
"copy:app": "copyfiles -u 2 -E -V \"client/build/**/*\" server/dist/app",
"docker:build": "yarn version && ts-node ./build-docker-image.ts",
"docker:build:pre": "yarn version && ts-node ./build-docker-image.ts --pre",
"docker:build:tar": "yarn version && ts-node ./build-docker-image.ts --bundle",
"upgrade-pkg": "yarn upgrade-pgk:client && yarn upgrade-pgk:server",
"upgrade-pkg:client": "cd ./client && npm-upgrade",
"upgrade-pkg:server": "cd ./server && npm-upgrade"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.5.1",
"@types/lodash": "^4.14.160",
"@types/luxon": "^1.24.4",
"@types/markdown-it": "^10.0.2",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chalk": "^4.1.0",
"copyfiles": "^2.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest-circus": "^26.4.2",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"dependencies": {
"class-transformer": "^0.3.1",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"markdown-it": "^11.0.0"
}
}