-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "mykomap",
"version": "3.1.7",
"description": "A web application for mapping initiatives in the Solidarity Economy",
"main": "src/map-app/index.ts",
"config": {
"deploy_to": "",
"deploy_user": "www-data",
"deploy_group": "www-data"
},
"engines": {
"npm": ">=8.15.0",
"node": ">=15.0.0"
},
"bin": {
"generate-version": "bin/generate-version",
"mykomap-site-build": "bin/mykomap-site-build",
"mykomap-site-deploy": "bin/mykomap-site-deploy"
},
"scripts": {
"lint": "eslint src/map-app/**/*.js",
"browser-tests": "karma start --single-run --browsers FirefoxHeadless",
"mocha-tests": "instant-mocha --webpack-config mocha-webpack.config.js --full-trace test/mocha-all.js",
"mocha-test": "instant-mocha --webpack-config mocha-webpack.config.js --full-trace",
"test": "npm run mocha-tests && npm run browser-tests",
"generate-config-doc": "ts-node bin/generate-config-doc >CONFIG.md",
"build": "bin/mykomap-site-build -c ext/config -s ext/src -m ./ -d ext/build ext/www/*",
"server": "php -t ext/build/out -S localhost:8080",
"webpack": "webpack",
"server2": "php -t dist -S localhost:8080",
"public-server": "php -t ext/build/out -S 0.0.0.0:8080",
"dev-deploy": "bin/mykomap-site-deploy -f ext/build/out/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:DigitalCommons/mykomap.git"
},
"keywords": [
"mapping",
"solidarity",
"economy",
"semantic",
"web"
],
"author": "Digital Commons Co-op",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/DigitalCommons/mykomap/issues"
},
"homepage": "https://github.com/DigitalCommons/mykomap",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@types/chai": "^4.3.3",
"@types/d3": "^7.4.0",
"@types/leaflet": "^1.9.0",
"@types/leaflet.awesome-markers": "^2.0.25",
"@types/leaflet.markercluster": "^1.5.1",
"@types/mocha": "^9.1.1",
"@types/papaparse": "^5.3.5",
"@types/postal": "^1.0.31",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.2.7",
"d3": "^7.6.1",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"leaflet": "^1.5.1",
"leaflet-active-area": "^1.1.0",
"leaflet-contextmenu": "^1.4.0",
"leaflet.awesome-markers": "^2.0.5",
"leaflet.markercluster": "^1.5.1",
"mini-css-extract-plugin": "^1.6.2",
"minimist": "^1.2.6",
"mocha": "^10.1.0",
"papaparse": "^5.3.2",
"postal": "^2.0.6",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.7.0",
"typescript": "^4.5.5",
"webpack": "^5.53.0"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.5",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-fetch": "^3.1.5",
"eslint": "^8.8.0",
"instant-mocha": "^1.4.1",
"karma": "^6.3.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"nock": "^13.2.9",
"webpack-cli": "^4.8.0",
"xhr2-cookies": "^1.1.0"
},
"overrides": {
"instant-mocha": {
"mocha": ">8"
}
}
}