-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.28 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "corona-tracker",
"version": "0.0.0",
"description": "Hangman Game using React and NX Workspace",
"license": "MIT",
"engines": {
"node": ">=12.16.0",
"npm": ">=6.13.0",
"yarn": ">=1.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/emjimadhu/corona-tracker.git"
},
"bugs": "https://github.com/emjimadhu/corona-tracker/issues",
"homepage": "https://github.com/emjimadhu/corona-tracker/blob/develop/README.md",
"author": {
"email": "[email protected]",
"name": "Em Ji Madhu"
},
"scripts": {
"start:web": "nx serve web",
"build:web": "nx build web",
"lint:web": "nx lint web",
"test:web": "nx test web",
"lint:web-components-header": "nx lint web-components-header",
"test:web-components-header": "nx test web-components-header",
"lint:web-components-info-box": "nx lint web-components-info-box",
"test:web-components-info-box": "nx test web-components-info-box",
"lint:web-components-map": "nx lint web-components-map",
"test:web-components-map": "nx test web-components-map",
"lint:web-components-table": "nx lint web-components-table",
"test:web-components-table": "nx test web-components-table",
"lint:web-components-line-graph": "nx lint web-components-line-graph",
"test:web-components-line-graph": "nx test web-components-line-graph",
"lint:web-e2e": "nx lint web-e2e",
"barrel:shared-types": "barrel-maintainer libs/shared/types/src --includeRootDir --singleQuotes --ts",
"lint:shared-types": "nx lint shared-types",
"test:shared-types": "nx test shared-types",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"checkYarn": "echo \"$npm_execpath\" | grep -q \"yarn\\.js$\" || (echo '⚠️ Use YARN not NPM! ⚠️ ' && echo && exit 1)",
"preinstall": "$npm_execpath --silent run checkYarn"
},
"private": true,
"dependencies": {
"@material-ui/core": "4.11.0",
"chart.js": "2.9.3",
"document-register-element": "1.13.1",
"leaflet": "1.6.0",
"numeral": "2.0.6",
"react": "16.13.1",
"react-chartjs-2": "2.10.0",
"react-dom": "16.13.1",
"react-leaflet": "2.7.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@nrwl/cypress": "10.0.11",
"@nrwl/eslint-plugin-nx": "10.0.11",
"@nrwl/jest": "10.0.11",
"@nrwl/react": "10.0.11",
"@nrwl/web": "10.0.11",
"@nrwl/workspace": "10.0.11",
"@testing-library/react": "10.4.1",
"@types/chartjs": "0.0.31",
"@types/jest": "25.1.4",
"@types/leaflet": "1.5.17",
"@types/node": "8.9.5",
"@types/numeral": "0.0.28",
"@types/react": "16.9.38",
"@types/react-chartjs-2": "2.5.7",
"@types/react-dom": "16.9.8",
"@types/react-leaflet": "2.5.2",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"babel-jest": "25.1.0",
"barrel-maintainer": "1.5.3",
"cypress": "4.12.1",
"dotenv": "6.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.0.0",
"eslint-formatter-formattify": "4.1.0",
"eslint-import-resolver-typescript": "2.2.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jest-formatting": "2.0.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"eslint-plugin-unicorn": "21.0.0",
"jest": "25.2.3",
"prettier": "2.0.4",
"ts-jest": "25.2.1",
"ts-node": "7.0.1",
"tslint": "6.0.0",
"typescript": "3.9.7"
}
}