forked from openfoodfacts/openfoodfacts-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.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
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
{
"name": "product-opener",
"version": "1.0.0",
"description": "",
"main": "",
"private": true,
"browserslist": [
">0.05%",
"defaults"
],
"scripts": {
"build": "gulp",
"build:watch": "gulp watch",
"build:dynamic": "npm install && gulp dynamic",
"test": "npm run lint",
"test:integration": "mocha --timeout 10000 -r dotenv/config",
"lint": "npm run lint:js && npm run lint:css && npm run lint:scss",
"lint:js": "eslint gulpfile.ts html/js/*.js tests/integration/*.js",
"lint:css": "stylelint html/css/*.css",
"lint:scss": "stylelint scss/*.scss",
"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": {
"@snyk/protect": "^1.1290.0",
"@webcomponents/webcomponentsjs": "2.8.0",
"@yaireo/tagify": ">=4.12.0 <4.25.0",
"blueimp-file-upload": "^10.31.0",
"cropperjs": "^1.6.1",
"foundation-sites": "5.5.3",
"highcharts": "^9.2.2",
"jquery-cropper": "^1.0.1",
"jquery-form": "^4.3.0",
"jquery-ui": "1.13.3",
"jsvectormap": "^1.5.3",
"leaflet": "^1.7.1",
"leaflet.markercluster": "1.5.3",
"osmtogeojson": "^3.0.0-beta.4",
"papaparse": "^5.4.1",
"select2": "~4.0",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.22.0",
"@types/gulp": "^4.0.17",
"@types/gulp-concat": "^0.0.37",
"@types/gulp-csso": "^4.0.5",
"@types/gulp-sass": "^5.0.4",
"@types/gulp-sourcemaps": "^0.0.38",
"@types/gulp-svgmin": "^1.2.4",
"@types/gulp-terser": "^1.2.6",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chai": "^5.1.0",
"chai-http": "^4.4.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgmin": "^4.1.0",
"gulp-terser": "^2.1.0",
"mocha": "^10.3.0",
"sass": "^1.75.0",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-scss": "^6.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/openfoodfacts-server"
},
"snyk": true
}