-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "vitemadose",
"version": "0.0.0",
"main": "dist/index.html",
"exports": {
".": "./dist/index.html"
},
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"tdd": "jest --watchAll --notify",
"test": "jest",
"dev": "vite",
"dev:offline": "VITE_OFFLINE_MODE=true vite",
"build": "tsc && vite build",
"build-dev": "tsc && vite --base dev/ build"
},
"browserslist": [
"defaults",
"not IE 11"
],
"devDependencies": {
"@babel/preset-env": "7.14.1",
"@open-wc/testing-helpers": "1.8.12",
"@testing-library/dom": "7.30.4",
"@testing-library/jest-dom": "5.12.0",
"@testing-library/user-event": "13.1.8",
"@types/chart.js": "2.9.32",
"@types/jest": "26.0.23",
"@types/leaflet": "1.7.0",
"@types/leaflet.markercluster": "1.4.4",
"@types/page": "1.11.2",
"@types/smoothscroll-polyfill": "0.3.1",
"@vitejs/plugin-legacy": "1.3.3",
"autoprefixer": "10.2.5",
"date-fns": "2.21.2",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"sass": "1.32.8",
"testing-library__dom": "7.29.4-beta.1",
"ts-jest": "26.5.5",
"typescript": "4.2.3",
"typescript-memoize": "1.0.1",
"vite": "2.1.5"
},
"dependencies": {
"bootstrap": "5.0.0-beta3",
"chart.js": "2.9.4",
"leaflet": "1.7.1",
"leaflet.markercluster": "1.4.1",
"lit-element": "2.4.0",
"page": "1.11.6",
"smoothscroll-polyfill": "0.4.4"
}
}