-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.07 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.07 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "am-i-rent-stabilized",
"version": "1.0.0",
"description": "Web app to inform New York City residents about Rent Stabilization",
"repository": {
"type": "git",
"url": "github.com/clhenrick/am-i-rent-stabilized"
},
"author": {
"name": "Chris Henrick",
"email": "chrishenrick@gmail.com",
"url": "http://clhenrick.io"
},
"license": "MIT",
"type": "module",
"scripts": {
"start": "run-p -l clean sass:build sass:watch js:watch eleventy:serve",
"start:preloaded-state": "USE_PRELOADED_STATE=true && yarn start",
"build": "run-s -l eleventy:build sass:build prefix:css js:build",
"clean": "rm -rf dist",
"eleventy:serve": "yarn exec eleventy --serve --incremental --port=8080 --quiet",
"eleventy:build": "yarn exec eleventy",
"sass:watch": "sass --watch --update --color src/scss:dist/styles",
"sass:build": "sass --style=compressed --no-source-map src/scss:dist/styles",
"sass:lint": "stylelint src/scss/**/*.scss",
"sass:lint-fix": "yarn sass:lint --fix",
"prefix:css": "postcss dist/styles/**/*.css --no-map --use autoprefixer -r",
"js:build": "node esbuild.config.js prod",
"js:watch": "node esbuild.config.js",
"js:lint": "eslint src/**/*.js",
"js:lint-fix": "yarn js:lint --fix",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "cd .. && husky website/.husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"packageManager": "yarn@4.9.1",
"engines": {
"node": ">=22.14.0",
"yarn": ">=4.9.1"
},
"dependencies": {
"@turf/rewind": "7.2.0",
"d3-geo": "2.0.1",
"d3-tile": "1.0.0",
"gsap": "3.12.2",
"handlebars": "^4.7.8",
"innersvg-polyfill": "^0.0.5",
"lodash.throttle": "4.1.1",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-thunk": "3.1.0",
"single-line-string": "0.0.2"
},
"devDependencies": {
"@11ty/eleventy": "3.1.5",
"@11ty/eleventy-plugin-handlebars": "^1.0.0",
"@eslint/js": "9.39.4",
"@eslint/json": "^0.12.0",
"autoprefixer": "^10.4.27",
"browserslist": "^4.24.5",
"browserslist-to-esbuild": "^2.1.1",
"esbuild": "^0.27.4",
"esbuild-plugin-handlebars": "^1.0.3",
"eslint": "9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.2.0",
"husky": ">=6",
"jsdom": "^29.0.0",
"lint-staged": ">=10",
"npm-run-all": "^4.1.5",
"pinst": ">=2",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^15.0.1",
"vitest": "^4.1.0",
"vitest-fetch-mock": "^0.4.5"
},
"browserslist": {
"production": [
"> 0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 edge version"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.scss": "stylelint --cache --fix",
"*.{js,css,scss,md}": "prettier --write"
}
}