-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.65 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": "earthquake-tracker",
"version": "1.0.0",
"description": "Earthquake Tracker",
"scripts": {
"test": "jest --coverage",
"coverage": "open coverage/lcov-report/index.html",
"compile:development:dll": "webpack --config webpack.config.dll.ts --mode=development",
"compile:development:source": "webpack --mode=development",
"compile:production:dll": "webpack --config webpack.config.dll.ts --mode=production",
"compile:production:source": "webpack --mode=production",
"start": "webpack-dev-server --mode=development",
"lint": "eslint . --ext .ts"
},
"author": "Vincent John Cagay",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"http-server": "^0.12.3",
"mapbox-gl": "^1.12.0",
"pikaday": "^1.8.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/clean-webpack-plugin": "^0.1.3",
"@types/compression-webpack-plugin": "^4.0.1",
"@types/html-webpack-plugin": "^3.2.3",
"@types/jest": "^26.0.14",
"@types/mapbox-gl": "^1.12.2",
"@types/node": "^14.11.2",
"@types/pikaday": "^1.7.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.3",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^6.0.2",
"eslint": "^7.10.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"html-webpack-tags-plugin": "^2.0.17",
"jest": "^26.4.2",
"react-refresh": "^0.8.3",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"type-fest": "^0.17.0",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vjcagay/earthquake-tracker.git"
},
"bugs": {
"url": "https://github.com/vjcagay/earthquake-tracker/issues"
},
"homepage": "https://github.com/vjcagay/earthquake-tracker#readme"
}