-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.14 KB
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
{
"name": "@conveyal/taui",
"description": "Isochrone & accessibility analysis",
"main": "src/index.js",
"engines": {
"node": "16.x"
},
"scripts": {
"build": "next build",
"check-format": "prettier -l \"src/**/*.js\" \"pages/**/*.js\"",
"dev": "next",
"format": "prettier --write \"src/**/*.js\" \"pages/**/*.js\"",
"now-build": "next build",
"predev": "yarn",
"start": "next start"
},
"repository": {
"type": "git",
"url": "https://github.com/conveyal/taui.git"
},
"keywords": [
"taui",
"transit"
],
"author": "Conveyal",
"license": "MIT",
"bugs": {
"url": "https://github.com/conveyal/taui/issues"
},
"homepage": "https://github.com/conveyal/taui",
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@conveyal/lonlat": "^1.4.0",
"@conveyal/woonerf": "^4.2.1",
"@emotion/core": "^10.0.34",
"@emotion/styled": "^10.0.27",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@mapbox/polyline": "^1.1.1",
"babel-eslint": "^10.1.0",
"d3-format": "^1.4.4",
"emotion-theming": "^10.0.27",
"eslint": "^7.7.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"js-cookie": "^2.2.1",
"jsolines": "^2.1.2",
"lodash": "^4.17.20",
"mapbox-gl": "^1.12.0",
"memoize-one": "^5.1.1",
"next": "v9.5.2",
"next-cookies": "^2.0.3",
"normalize.css": "^8.0.1",
"react": "v16.13.1",
"react-dom": "v16.13.1",
"react-modal": "^3.11.2",
"react-redux": "^7.2.1",
"react-select": "^3.1.0",
"react-select-fast-filter-options": "^0.2.3",
"react-virtualized-select": "^3.1.3",
"redux": "^4.0.5",
"reselect": "^4.0.0"
},
"devDependencies": {
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"bracketSpacing": false,
"jsxSingleQuote": true,
"singleQuote": true,
"semi": false,
"trailingComma": "none"
}
}