-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
124 lines (124 loc) · 4.09 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
123
124
{
"name": "cob-patterns",
"version": "0.0.1",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git://github.com/CityOfBoston/patterns.git"
},
"scripts": {
"dev": "concurrently \"gulp\" \"fractal start --watch\" \"stencil build --docs --prerender --watch\"",
"dev-chrome": "concurrently \"gulp\" \"fractal start --watch\" \"stencil build --docs --dev --prerender --watch\"",
"build": "stencil build --prerender --docs && gulp build && fractal build",
"fractal-build": "fractal build",
"gulp-build": "gulp build",
"heroku-postbuild": "npm run build",
"lint": "eslint --ext .tsx,.ts,.js .",
"test": "npm run jest && npm run testcafe",
"jest": "jest",
"jest.ci": "jest",
"jest.dev": "jest --watch",
"testcafe": "npm run build && npm run testcafe.local",
"testcafe.local": "cross-env TEST_SERVER_URL=http://localhost:3035/ testcafe -a 'http-server -r public -p 3035' -c 3 chrome:headless components/**/*.testcafe.*",
"testcafe.dev": "testcafe -L remote components/**/*.testcafe.*",
"testcafe.ci": "cross-env BROWSERSTACK_USE_AUTOMATE=1 TEST_SERVER_URL=http://localhost:3035/ testcafe -a 'http-server -r public -p 3035' 'browserstack:edge@18,browserstack:[email protected]:Windows 8.1,browserstack:chrome:Windows 10,browserstack:firefox@64:Windows 10' components/**/*.testcafe.*",
"precommit": "lint-staged",
"prepush": "jest --clearCache && npm run test",
"preinstall": "npx force-resolutions",
"import-icons": "node dev-scripts/icons_manifest/index.js"
},
"jest": {
"transform": {
"\\/web-components\\/.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "\\.spec\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --quiet",
"*.svg": [
"svgo --config svgo.yml",
"git add"
]
},
"dependencies": {
"@frctl/fractal": "^1.3.0",
"@stencil/core": "^0.18.1",
"@types/core-js": "2.5.0",
"@types/d3-fetch": "1.1.2",
"@types/geojson": "7946.0.1",
"@types/jest": "22.1.1",
"@types/leaflet": "1.2.5",
"ajv": "^5.5.2",
"autoprefixer": "^6.7.7",
"concurrently": "^3.5.1",
"core-js": "^2.5.0",
"d3-fetch": "1.1.2",
"docson": "^2.1.0",
"esri-leaflet": "2.2.3",
"esri-leaflet-geocoder": "2.2.13",
"graceful-fs": "4.2.2",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-load-plugins": "^2.0.3",
"gulp-stylus": "^2.3.1",
"gulp-uglify": "^3.0.0",
"handlebars": "^4.7.7",
"laggard": "^0.1.0",
"leaflet": "1.3.2",
"leaflet.markercluster": "https://[email protected]/CityOfBoston/Leaflet.markercluster#160f1f0",
"lodash": "^4.17.21",
"lost": "^8.1.0",
"postcss": "^8.2.13",
"postcss-flexibility": "^1.1.0",
"poststylus": "^0.2.3",
"require-dir": "^0.3.0",
"rucksack-css": "^0.9.1",
"run-sequence": "^1.2.2",
"serve-static": "^1.11.1",
"templayed": "https://[email protected]/CityOfBoston/templayed.js",
"vega-lib": "4.2.0",
"vega-lite": "3.0.0-rc5",
"vega-tooltip": "0.17.0"
},
"devDependencies": {
"axios": "^0.24.0",
"cross-env": "^5.1.4",
"escape-html": "^1.0.3",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"gulp-plumber": "^1.2.0",
"gulp-util": "^3.0.8",
"handlebars-async": "^1.0.0",
"http-server": "^0.12.3",
"husky": "^0.14.3",
"jest": "^26.2.2",
"json-schema-to-typescript": "^5.4.0",
"json-to-pretty-yaml": "^1.2.2",
"lint-staged": "^6.1.0",
"mkdirp": "^1.0.4",
"mockdate": "^2.0.2",
"plugin-error": "^1.0.1",
"prettier": "^1.10.2",
"svgo": "^1.3.2",
"testcafe": "^1.1.0",
"testcafe-browser-provider-browserstack": "^1.13.0",
"through2": "^2.0.3",
"typescript": "^2.8.1",
"typescript-eslint-parser": "^12.0.0",
"web-server-cli": "^2.0.2",
"yaml-lint": "^1.2.4"
},
"resolutions": {
"graceful-fs": "4.2.3"
}
}