-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.65 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
{
"name": "sketch-map-tool",
"version": "1.0.0",
"description": "",
"nodemonConfig": {
"watch": [
"client-src",
"sketch_map_tool/templates",
"esbuild.js"
],
"ext": "js,css,html",
"exec": "npm run build"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint-css": "stylelint '**/*.css'",
"lint-js": "eslint .",
"lint": "npm run lint-css && npm run lint-js",
"lint-css:fix": "npm run lint-css -- --fix",
"lint-js:fix": "npm run lint-js -- --fix",
"lint:fix": "npm run lint-css:fix && npm run lint-js:fix",
"clean": "rimraf ./sketch_map_tool/static/bundles",
"build": "npm run clean && node esbuild.js",
"watch": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GIScience/sketch-map-tool.git"
},
"author": "HeiGIT <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/GIScience/sketch-map-tool/issues"
},
"homepage": "https://github.com/GIScience/sketch-map-tool#readme",
"devDependencies": {
"esbuild": "^0.19.4",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"stylelint": "15.10.3",
"stylelint-config-standard": "34.0.0"
},
"dependencies": {
"@giscience/ol-print-layout-control": "^1.0.2",
"@picocss/pico": "^1.5.10",
"filebokz": "^0.1.3",
"ol": "^8.1.0",
"ol-geocoder": "^4.3.1"
}
}