forked from openfoodfacts/openfoodfacts-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.81 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
{
"name": "product-opener",
"version": "1.0.0",
"description": "",
"main": "",
"private": true,
"scripts": {
"build": "gulp",
"build:watch": "gulp watch",
"build:dynamic": "npm install && gulp dynamic",
"test": "npm run test:lang && npm run prove && npm run lint && npm run perlc",
"test:lang": "npm run test:lang:common && npm run test:lang:en",
"test:lang:en": "perl scripts/check_po_file.pl po/tags/en.po",
"test:lang:common": "perl scripts/check_po_file.pl po/common/en.po",
"test:integration": "mocha --timeout 10000 -r dotenv/config",
"prove": "prove -l --jobs 2",
"lint": "npm run lint:js && npm run lint:css && npm run lint:scss",
"lint:js": "eslint gulpfile.js html/js/*.js scripts/*.js test/*.js",
"lint:css": "stylelint html/css/*.css",
"lint:scss": "stylelint scss/*.scss",
"perlc": "npm run perlc:startup && npm run perlc:cgi && npm run perlc:scripts",
"perlc:startup": "perl -c -CS -Ilib lib/startup_apache2.pl",
"perlc:cgi": "node scripts/check_perl.js cgi/*.pl",
"perlc:scripts": "node scripts/check_perl.js scripts/*.pl",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/openfoodfacts/openfoodfacts-server.git"
},
"author": "Open Food Facts Association",
"license": "GNU Affero General Public License",
"bugs": {
"url": "https://github.com/openfoodfacts/openfoodfacts-server/issues"
},
"homepage": "https://github.com/openfoodfacts/openfoodfacts-server#readme",
"os": [
"darwin",
"linux",
"win32"
],
"dependencies": {
"@webcomponents/webcomponentsjs": "2.6.0",
"@yaireo/tagify": "^4.7.2",
"blueimp-file-upload": "^10.31.0",
"cropperjs": "^1.5.12",
"foundation-sites": "5.5.3",
"highcharts": "^9.2.2",
"jquery-cropper": "^1.0.1",
"jquery-form": "^4.3.0",
"jquery-ui": "^1.12.1",
"jvectormap-content": "^0.1.0",
"jvectormap-next": "^3.1.1",
"leaflet": "^1.7.1",
"leaflet.markercluster": "1.5.1",
"osmtogeojson": "^3.0.0-beta.4",
"papaparse": "^5.3.1",
"snyk": "^1.733.0",
"xml2json": "^0.12.0",
"select2": "~4.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgmin": "^4.0.1",
"gulp-terser-js": "^5.2.2",
"mocha": "^9.1.2",
"sass": "^1.42.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-scss": "^3.21.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/openfoodfacts-server"
},
"snyk": true
}