-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.77 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
{
"name": "cal-adapt-website-2021",
"description": "Website and climate model web applications for cal-adapt.org",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "cross-env NODE_ENV=development SOURCE_MAPS=true sapper dev --no-hot",
"build": "cross-env NODE_ENV=production SOURCE_MAPS=true sapper build",
"build:github": "cross-env NODE_ENV=production SOURCE_MAPS=false sapper build",
"export": "cross-env NODE_ENV=production SOURCE_MAPS=true sapper export --timeout=10000",
"start": "node __sapper__/build",
"start:export": "npx serve -p 5000 __sapper__/export",
"deploy": "zx ./scripts/deploy.mjs",
"deploy-prod": "npm run deploy -- --location=prod",
"deploy-dev": "npm run deploy -- --location=dev",
"deploy-netlify": "npm run deploy -- --location=netlify",
"deploy-beta": "npm run deploy -- --location=beta",
"lint": "eslint src --ext .js,.svelte",
"format": "prettier --write",
"format:all": "npm run format -- .",
"format:single": "npm run format --file=$npm_config_file",
"sass:test-build": "node-sass --quiet --include-path ./node_modules src/scss/main.scss > /dev/null",
"pretest": "npm run lint",
"prepare": "husky install",
"slr-cis-data": "npm run generate-data --workspace=slr-cis-data-coverage",
"test": "jest src",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"@mapbox/togeojson": "^0.16.0",
"@turf/area": "^6.3.0",
"@turf/bbox": "^6.0.1",
"@turf/center": "^6.0.1",
"@turf/helpers": "^6.3.0",
"@turf/simplify": "^5.1.5",
"@turf/truncate": "^6.5.0",
"blueimp-canvas-to-blob": "^3.28.0",
"clipboard-copy": "^4.0.1",
"compression": "^1.7.1",
"d3-array": "^2.11.0",
"d3-axis": "2.1",
"d3-dsv": "^2.0.0",
"d3-format": "^2.0.0",
"d3-interpolate": "^2.0.1",
"d3-quadtree": "^2.0.0",
"d3-scale": "^3.2.3",
"d3-selection": "^2.0.0",
"d3-shape": "^2.0.0",
"d3-time": "^2.0.0",
"d3-time-format": "^3.0.0",
"fast-deep-equal": "^3.1.3",
"file-saver": "^2.0.5",
"html2canvas": "^1.0.0-rc.7",
"include-media": "^1.4.10",
"install": "^0.13.0",
"jspdf": "^2.3.1",
"just-left-pad": "^2.1.0",
"lodash.throttle": "^4.1.1",
"mapbox-gl": "^2.0.1",
"polka": "^1.0.0-next.20",
"shpjs": "^3.6.3",
"sirv": "^1.0.0",
"wicg-inert": "^3.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.16.11",
"@berkeley-gif/cal-adapt-svelte-components": "^1.1.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/svelte": "^3.0.3",
"autoprefixer": "^10.1.0",
"babel-jest": "^27.5.1",
"carbon-components": "^10.30.0",
"carbon-components-svelte": "^0.42.2",
"cross-env": "^7.0.3",
"d3-geo": "^2.0.2",
"d3-tile": "^1.0.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"file-loader": "^6.0.0",
"front-matter": "^4.0.2",
"html-loader": "^2.1.2",
"husky": "^7.0.1",
"jest": "^27.5.1",
"layercake": "^4.0.3",
"lint-staged": "^11.1.2",
"lodash.clonedeep": "^4.5.0",
"marked": "^1.2.7",
"node-sass": "^6.0.1",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.7.0",
"raw-loader": "^4.0.2",
"sapper": "^0.28.0",
"svelte": "^3.48.0",
"svelte-inview": "^2.0.1",
"svelte-jester": "^2.3.1",
"svelte-loader": "2.13.6",
"svelte-preprocess": "^4.6.1",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-modules": "^1.0.0",
"zx": "^4.2.0"
},
"lint-staged": {
"*.{js,svelte}": "eslint --cache --fix",
"*.{js,svelte,jsx,ts,tsx,md,html,css,scss}": "prettier --write"
},
"workspaces": [
"scripts/slr-cis-data-coverage"
]
}