generated from CodersCamp2020/CodersCamp2020.Project.TypeScript.Chess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 4.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "coderscamp2020.project.typescript.fitnotfat",
"version": "1.0.0",
"description": "FitNotFat Application - CodersCamp 2021 Typescript project",
"main": "index.html",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"format": "prettier --write \"Src/**/*.js\" \"Src/**/*.ts\" \"test/**/*.js\" \"test/**/*.ts\"",
"start:dev": "parcel -p 8765 watch index.html",
"build": "parcel build index.html --public-url ./",
"start:goaltile": "parcel -p 8765 watch ./UnitImplementations/UIComponents/GoalTile/GoalTile.html",
"start:localstorage": "parcel -p 8765 watch ./UnitImplementations/Logic/LocalStorage/LocalStorage.html",
"start:buttons": "parcel -p 8765 watch ./UnitImplementations/UIComponents/Buttons/Buttons.html",
"start:joinus2": "parcel -p 8765 watch ./UnitImplementations/UIComponents/JoinUsSecondStep/JoinUsSecondStep.html",
"start:profileInfo": "parcel -p 8765 watch ./UnitImplementations/UIComponents/ProfileInfo/ProfileInfo.html",
"start:weight-table": "parcel -p 8765 watch ./UnitImplementations/UIComponents/HistoricalWeights/HistoricalWeights.html",
"start:dashboard": "parcel -p 8765 watch ./UnitImplementations/UIComponents/Dashboard/Dashboard.html",
"start:goals-table": "parcel -p 8765 watch ./UnitImplementations/UIComponents/HistoricalWeeklyGoalsTable/HistoricalWeeklyGoalsTable.html",
"start:weekly-goal": "parcel -p 8765 watch ./UnitImplementations/UIComponents/WeeklyGoalComponent/WeeklyGoalComponent.html",
"start:login": "parcel -p 8765 watch ./UnitImplementations/UIComponents/LogIn/LogIn.html",
"start:initialview": "parcel -p 8765 watch ./UnitImplementations/UIComponents/InitialView/InitialView.html",
"start:diaryAdd": "parcel -p 8765 watch ./UnitImplementations/UIComponents/AddDiaryItem/AddDiaryItem.html",
"start:tileMyWeight": "parcel -p 8765 watch ./UnitImplementations/UIComponents/TileMyWeight/TileMyWeight.html",
"start:MyDiaryFood": "parcel -p 8765 watch ./UnitImplementations/UIComponents/MyDiaryFood/MyDiaryFood.html",
"start:myWeights": "parcel -p 8765 watch ./UnitImplementations/UIComponents/MyWeights/MyWeights.html",
"start:myGoals": "parcel -p 8765 watch ./UnitImplementations/Logic/MyGoals/MyGoals.html",
"start:registration": "parcel -p 8765 watch ./UnitImplementations/Logic/Registration/Registration.html",
"start:secondStep": "parcel -p 8765 watch ./UnitImplementations/UIComponents/SecondStepComponent/SecondStepComponent.html",
"start:overview": "parcel -p 8765 watch ./UnitImplementations/UIComponents/Overview/Overview.html",
"start:apiKey": "parcel -p 8765 watch ./UnitImplementations/UIComponents/TileAPIKey/TileAPIKey.html",
"start:apiKeyLogic": "parcel -p 8765 watch ./UnitImplementations/Logic/APIDetailsStorage/APIDetailsStorage.html",
"start:logicProfileInfo": "parcel -p 8765 watch ./UnitImplementations/Logic/SetProfileInfo/SetProfileInfo.html",
"start:exercises": "parcel -p 8765 watch ./UnitImplementations/UIComponents/Exercises/ExercisesDashboard.html",
"start:registrationTransition": "parcel -p 8765 watch ./UnitImplementations/Logic/RegistrationLoginTransition/RegistrationLoginTransition.html",
"start:remainingCal": "parcel -p 8765 watch ./UnitImplementations/UIComponents/TileRemainingCalories/TileRemainingCalories.html",
"start:remCalLogic": "parcel -p 8765 watch ./UnitImplementations/Logic/SetRemainingCalories/SetRemainingCalories.html",
"start:views": "parcel -p 8765 watch ./UnitImplementations/UIComponents/Views/Views.html"
},
"keywords": [
"fitnotfat",
"diet",
"typescript"
],
"author": "",
"license": "ISC",
"dependencies": {
"justgage": "^1.4.0",
"moment": "^2.29.1",
"regenerator-runtime": "^0.13.7",
"typings": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@testing-library/dom": "^7.29.4",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"jest": "^26.0.0",
"jest-transform-stub": "^2.0.0",
"parcel": "^1.12.4",
"prettier": "^2.2.1",
"sass": "^1.32.5",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"moment": "^2.29.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": "(test|spec)\\.(jsx?|tsx?)$",
"coverageDirectory": "../Coverage",
"collectCoverageFrom": [
"./Src/**"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"moduleNameMapper": {
"\\.(png)$": "jest-transform-stub"
}
}
}