This repository was archived by the owner on Feb 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.99 KB
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
{
"private": true,
"name": "react-track",
"version": "1.0.0",
"description": "timetracking app",
"author": "Tristan Teufel",
"license": "GNU GPL-3.0",
"homepage": "https://teufel-it.de",
"devDependencies": {
"@types/debug": "latest",
"@types/jest": "latest",
"@types/lowdb": "latest",
"@types/moment-duration-format": "latest",
"@types/uuid": "latest",
"@types/prop-types": "latest",
"@types/fs-extra": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"ts-loader": "latest",
"clean-webpack-plugin": "latest",
"fs-extra": "latest",
"@graphql-codegen/cli": "latest",
"@graphql-codegen/typescript": "latest",
"@graphql-codegen/typescript-operations": "latest",
"jest": "latest",
"lowdb": "latest",
"moment": "latest",
"moment-duration-format": "latest",
"prettier": "latest",
"ts-jest": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"tsconfig-paths-webpack-plugin": "latest",
"typescript": "latest",
"uuid": "latest",
"webpack": "latest",
"webpack-cli": "latest"
},
"repository": {
"type": "git",
"url": "https://tristanteu@bitbucket.org/teufelit/timetracking-app.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start:web+server": "concurrently \"yarn start:server\" \"yarn start:web\"",
"start:web": "cd packages/app && yarn start:web",
"start:server": "cd packages/server && yarn start:server",
"test": "jest",
"lint": "eslint \"packages/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"packages/**/*.{ts,tsx}\"",
"generate-types": "graphql-codegen",
"build": "yarn build:web && yarn build:server",
"build:web": "cd packages/app && yarn build:web",
"build:server": "cd packages/server && yarn build"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}