-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (61 loc) · 1.87 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
{
"name": "ticks-converter",
"version": "1.6.0",
"author": {
"email": "[email protected]",
"name": "Marius Munthe-Kaas"
},
"repository": {
"type": "git",
"url": "https://github.com/mariusmu/datetime-ticks"
},
"description": "Electron App to make the conversion between C# DateTime ticks and JS-ticks easy",
"scripts": {
"lint": "tslint --project tsconfig.json --type-check",
"watch": "parcel serve index.html",
"build": "parcel build index.html",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/__tests__/*.(test|spec).(ts|tsx|js)"
],
"testPathIgnorePatterns": ["dist/*"]
},
"devDependencies": {
"@types/jest": "29.5.13",
"jest": "29.7.0",
"parcel": "2.12.0",
"postcss": "8.4.47",
"process": "^0.11.10",
"ts-jest": "29.2.5"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.0",
"@types/react-flatpickr": "^3.8.11",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.34",
"concurrently": "9.0.1",
"font-awesome": "4.7.0",
"moment": "^2.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-flatpickr": "^3.10.13",
"react-router-dom": "6.26.2",
"source-map-support": "0.5.21",
"styled-components": "6.1.13",
"tslib": "2.7.0",
"tslint": "6.1.3",
"typescript": "5.6.2"
}
}