-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 KB
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
{
"name": "ec-cube2",
"version": "2.25.0",
"main": "index.js",
"repository": "git@github.com:EC-CUBE/ec-cube2.git",
"author": "https://www.ec-cube.net",
"license": "GPL",
"dependencies": {
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"iconv-lite": "^0.6.3",
"jquery": "3.7.1",
"jquery-colorbox": "^1.6.4",
"jquery-easing": "^0.0.1",
"jquery-migrate": "^3.5.2",
"jquery-ui": "^1.14.1",
"js-yaml": "^4.1.1",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@playwright/test": "1.56.0",
"@types/date-fns": "^2.6.3",
"@types/tar": "^6.1.13",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"esbuild": "^0.25.0",
"eslint": "^8.57.1",
"eslint-config-jquery": "^3.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-playwright": "^2.2.0",
"tar": "^7.5.11",
"typescript": "^5.8.3"
},
"scripts": {
"lint:javascript": "eslint --fix data/*.js",
"lint:typescript": "eslint --fix --ext .ts e2e-tests",
"test:e2e": "playwright test --grep-invert '(@attack|@extends)'",
"test:e2e-extends": "playwright test --grep @extends",
"test:attack": "playwright test --grep-invert @extends",
"build": "node esbuild.config.mjs",
"dev": "node esbuild.config.mjs --watch"
},
"overrides": {
"js-yaml": "^4.1.1"
}
}