This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "groundwork-django",
"version": "0.1.6",
"repository": "https://github.com/commonknowledge/groundwork.git",
"description": "An integrated Django and Javascript framework for people who build tools for organisers.",
"author": "Common Knowledge <[email protected]>",
"license": "GPL-3.0-only",
"types": "types.d.ts",
"scripts": {
"test": "jest"
},
"dependencies": {
"events": "^3.3.0",
"stimulus-controller-resolver": "^2.0.1",
"superclusterd": "^1.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/turbo": "^7.0.1",
"@microsoft/api-extractor": "^7.18.20",
"@testing-library/dom": "^8.11.1",
"@types/jest": "^27.0.3",
"@types/mapbox-gl": "^2.7.5",
"@vitejs/plugin-legacy": "^1.6.2",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.2",
"babel-preset-vite": "^1.0.4",
"es-module-lexer": "^0.9.3",
"jest": "^27.3.1",
"mapbox-gl": "^2.6.0",
"mutationobserver-shim": "^0.3.7",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4",
"vite": "^2.6.14",
"vite-plugin-dynamic-publicpath": "^1.1.0"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.0.1",
"@testing-library/dom": "^8.11.1",
"mapbox-gl": "^2.6.0"
},
"files": [
"build/lib",
"build/test-utils",
"types.d.ts"
],
"module": "./build/lib/index.js",
"exports": {
".": {
"import": "./build/lib/index.js"
},
"./test-utils": {
"import": "./build/test-utils/index.js"
}
}
}