This repository has been archived by the owner on Jun 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 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
{
"name": "subway-time",
"version": "3.0.0",
"homepage": "http://subwayti.me/",
"repository": {
"type": "git",
"url": "git+https://github.com/WesSouza/subway-time"
},
"keywords": [
"subway",
"time table"
],
"license": "MIT",
"author": "Wes Souza <[email protected]>",
"scripts": {
"build": "parcel build ./src/index.html --dist-dir public",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"ts": "tsc --noEmit"
},
"dependencies": {
"@reach/router": "^1.3.4",
"fast-deep-equal": "^3.1.3",
"geolib": "^3.3.1",
"got": "^11.8.2",
"immer": "^9.0.1",
"natural-compare-lite": "^1.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"sanitize.css": "^12.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@parcel/transformer-typescript-tsc": "^2.0.0-beta.2",
"@types/node": "^14.14.35",
"@types/reach__router": "^1.3.7",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@vercel/node": "^1.9.1",
"autoprefixer": "^10.2.5",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react-hooks": "^4.2.0",
"import-sort-style-wes": "^3.0.2",
"parcel": "^2.0.0-beta.2",
"postcss": "^8.2.8",
"postcss-modules": "^4.0.0",
"prettier": "2.2.1",
"prettier-plugin-import-sort": "^0.0.6",
"typescript": "~4.2.3"
},
"browserslist": "last 2 Chrome versions",
"engines": {
"node": ">= 12.x"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"importSort": {
".js, .jsx": {
"parser": "babylon",
"style": "wes"
},
".ts, .tsx": {
"parser": "typescript",
"style": "wes"
}
}
}