-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.76 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
{
"name": "@geo6/manager",
"version": "1.0.0",
"description": "",
"scripts": {
"prebuild": "rm -rf public/assets",
"build": "concurrently \"npm:build:*\"",
"build:script": "parcel build --dist-dir public/assets/js src/typescript/*/index.ts",
"build:style": "parcel build --dist-dir public/assets/css src/sass/style.scss",
"watch:script": "parcel watch --dist-dir public/assets/js src/typescript/*/index.ts",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "eslint src/typescript",
"lint:tsc": "tsc --project tsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geo6/manager.git"
},
"license": "proprietary",
"bugs": {
"url": "https://github.com/geo6/manager/issues"
},
"homepage": "https://github.com/geo6/manager#readme",
"devDependencies": {
"@parcel/transformer-sass": "2.0.0",
"@parcel/transformer-typescript-tsc": "2.0.0",
"@types/bootstrap": "^5.1.3",
"@types/geojson": "^7946.0.8",
"@types/ol": "^6.5.3",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"parcel": "2.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@geo6/overlay-image-preview": "^0.2.4",
"@popperjs/core": "^2.10.1",
"bootstrap": "^5.1.0",
"filepond": "^4.30.3",
"filepond-plugin-file-metadata": "^1.0.8",
"filepond-plugin-file-validate-type": "^1.2.6",
"filepond-plugin-image-exif-orientation": "^1.0.11",
"filepond-plugin-image-preview": "^4.6.10",
"ol": "^6.6.1"
}
}