This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "@enbock/time-tracker",
"version": "0.2.0-dev.9",
"homepage": "https://enbock.github.io/Time-Tracker/",
"description": "Experimental Project: Tracking start and end of working time.",
"dependencies": {
"material-components-web": "^7.0.0",
"material-design-icons": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@enbock/application-router": "^2.0.0",
"@enbock/simple-storage": "^2.0.0",
"@enbock/state-value-observer": "^2.0.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@types/jest": "26.0.3",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"jest": "^26.1.0",
"typescript": "^3.9.5",
"utf-8-validate": "^5.0.2"
},
"scripts": {
"winDevServer": "powershell.exe -Command bash ./scripts/copyFiles.sh develop; cd build; npx http-server",
"startCompiler": "powershell.exe -Command npx tsc --build tsconfig.json -w",
"watchCompiledScripts": "powershell.exe -Command bash -c 'while sleep 3; do bash ./scripts/correctImports.sh; done'",
"start": "sh scripts/start.sh",
"test": "jest",
"build": "sh scripts/build.sh"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/index.{ts,tsx}"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.tsx?$",
"testEnvironment": "jest-environment-jsdom",
"testURL": "http://localhost",
"transformIgnorePatterns": [
"^.+\\.module\\.css$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageThreshold": {
"global": {
"branches": 95
}
}
}
}