-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.84 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
{
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.4",
"@geo6/overlay-image-preview": "0.2.4",
"@sentry/browser": "6.12.0",
"@turf/unkink-polygon": "6.5.0",
"bootstrap": "^5.1.3",
"file-saver": "2.0.5",
"ol": "6.9.0",
"papaparse": "5.3.1",
"proj4": "2.7.5",
"resumablejs": "1.1.0",
"sidebar-v2": "https://gitpkg.now.sh/umbe1987/sidebar-v2?ol5-sidebar",
"slugify": "^1.6.4"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.14.6",
"@types/bootstrap": "^5.1.9",
"@types/jquery": "^3.5.10",
"@types/ol": "^6.5.3",
"@types/papaparse": "^5.3.2",
"@types/proj4": "^2.5.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"prettier": "^2.3.2",
"sass": "^1.45.0",
"typescript": "^4.4.3"
},
"scripts": {
"build": "npm-run-all build:*",
"build:style": "parcel build --out-dir=public/ --public-url . resources/sass/style.scss --no-source-maps",
"build:script": "parcel build --out-dir=public/ --out-file=mapper.js --public-url . --global app resources/javascript/main.ts",
"watch:script": "parcel watch --out-dir=public/ --out-file=mapper.js --public-url . --global app resources/javascript/main.ts --no-hmr",
"lint": "eslint --ext .js --ext .ts resources/javascript/",
"lint:fix": "eslint --fix --ext .js --ext .ts resources/javascript/"
}
}