-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 7.29 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 7.29 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "grid-table-editor",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@11.1.1",
"engines": {
"node": ">=24.9.0"
},
"description": "A simple Data Table Editor that generates Markdown, CSV or JSON. It can also be used to interchange data between the formats, supporting editing in the grid.",
"main": "apps/web/index.html",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config ./jest.config.cjs",
"testverbose": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config ./jest.config.cjs --verbose",
"testcoverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config ./jest.config.cjs --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "node ./scripts/run-build-storybook.mjs",
"test:storybook": "node ./scripts/run-storybook-tests.mjs",
"test:ui:jest": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config ./jest.config.cjs --testPathPatterns packages/core-ui/src/tests apps/web/src/tests/jest",
"testenv:create": "node ./scripts/create-testenv.mjs",
"generate:faker-help": "node ./scripts/generate-faker-help.js",
"test:browser": "node ./node_modules/@playwright/test/cli.js test",
"test:browser:headed": "node ./node_modules/@playwright/test/cli.js test --headed",
"test:browser:install": "node ./node_modules/@playwright/test/cli.js install chromium",
"test:api": "node ./scripts/run-playwright-api-tests.mjs",
"test:api:headed": "node ./node_modules/@playwright/test/cli.js test --config=playwright-api.config.js --headed",
"test:api:verbose": "node ./node_modules/@playwright/test/cli.js test --config=playwright-api.config.js --reporter=verbose",
"lint": "eslint \"apps/**/*.js\" \"packages/**/*.js\"",
"lint:fix": "eslint --fix \"apps/**/*.js\" \"packages/**/*.js\"",
"lint:docker": "node scripts/lint-docker.js",
"format": "prettier --write \"*.json\" \"apps/**/*.json\" \"packages/**/*.json\" \"apps/**/*.js\" \"!apps/web/libs/**/*.js\" \"!apps/web/dist/**/*.js\" \"packages/**/*.js\" \"*.md\" \".github/workflows/*.yml\"",
"format:check": "prettier --check \"*.json\" \"apps/**/*.json\" \"packages/**/*.json\" \"apps/**/*.js\" \"!apps/web/libs/**/*.js\" \"!apps/web/dist/**/*.js\" \"packages/**/*.js\" \"*.md\" \".github/workflows/*.yml\"",
"verify:ui": "pnpm run lint && pnpm run format:check && pnpm run test:ui:jest && pnpm run test:storybook && pnpm run build-storybook && pnpm run test:browser",
"verify:local": "pnpm run lint && pnpm run format:check && pnpm test && pnpm run test:workspaces && pnpm run test:storybook && pnpm run build-storybook && pnpm run test:api",
"verify:ci:pr": "pnpm run lint && pnpm run format:check && pnpm test && pnpm run test:workspaces && pnpm run test:storybook && pnpm run build-storybook && pnpm run lint:docker && pnpm run test:browser && pnpm run test:api",
"verify:ci": "pnpm run lint && pnpm run format:check && pnpm run testcoverage && pnpm run test:workspaces && pnpm run test:storybook && pnpm run build-storybook && pnpm run lint:docker && pnpm run test:browser && pnpm run test:api",
"dev:web": "vite --config ./apps/web/vite.config.mjs",
"build:web": "vite build --config ./apps/web/vite.config.mjs",
"preview:web": "vite preview --config ./apps/web/vite.config.mjs",
"serve:web": "pnpm run dev:web",
"benchmark:tabulator": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config ./jest.config.cjs --runTestsByPath packages/core-ui/src/tests/grid/tabulator-performance.benchmark.test.js --runInBand",
"anywaydata:mac": "pnpm --dir docs-src run anywaydata && pnpm run build:web && node ./scripts/merge-web-build-into-docs-build.js && cp -R ./build/ ../../anywaydata-com",
"anywaydata:win": "pnpm --dir docs-src run anywaydata && pnpm run build:web && node .\\scripts\\merge-web-build-into-docs-build.js && echo cleaning anywaydata for deployment && ..\\anywaydata-com\\make-ready-for-prod.bat",
"previewdocs": "pnpm --dir docs-src run start",
"prepare": "husky",
"build:workspaces": "pnpm -r --if-present run build",
"test:workspaces": "pnpm --workspace-concurrency=1 --filter @anywaydata/api --filter @anywaydata/cli --filter @anywaydata/mcp run test",
"test:workspaces:all": "pnpm -r --if-present run test"
},
"jest": {
"verbose": true,
"transform": {},
"testRegex": [
"packages[/\\\\]core[/\\\\]src[/\\\\]tests[/\\\\].*\\.test\\.js$",
"packages[/\\\\]core-ui[/\\\\]src[/\\\\]tests[/\\\\].*\\.test\\.js$",
"tests[/\\\\]integration[/\\\\].*\\.test\\.js$",
"apps[/\\\\]web[/\\\\]src[/\\\\]tests[/\\\\]jest[/\\\\].*\\.test\\.js$"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/browser/",
"/apps/web/src/tests/browser/"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"collectCoverageFrom": [
"packages/**/*.js",
"!packages/core/js/libs/**"
],
"moduleNameMapper": {
"^@anywaydata/core$": "<rootDir>/packages/core/src/index.js",
"^@anywaydata/core/mcp/(.*)$": "<rootDir>/packages/core/js/mcp/$1",
"^@anywaydata/core/(.*)$": "<rootDir>/packages/core/js/$1",
"^@anywaydata/core/data_formats/(.*)$": "<rootDir>/packages/core/js/data_formats/$1",
"https://cdn.skypack.dev/@faker-js/faker@v9.7.0": "@faker-js/faker",
"https://unpkg.com/papaparse@5.5.2/papaparse.min.js": "papaparse",
"/libs/randexp.min.js": "randexp"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eviltester/grid-table-editor.git"
},
"keywords": [
"table editor",
"test data",
"test data generator",
"markdown table",
"html table",
"data grid editor"
],
"author": "Alan Richardson",
"license": "MIT",
"bugs": {
"url": "https://github.com/eviltester/grid-table-editor/issues"
},
"homepage": "https://github.com/eviltester/grid-table-editor#readme",
"dependencies": {
"@anywaydata/core": "workspace:^",
"@mcp-b/webmcp-polyfill": "3.0.0",
"@popperjs/core": "2.11.8",
"chrono-node": "^2.9.1",
"date-fns": "^4.4.0",
"date-fns-tz": "^3.2.0",
"papaparse": "5.5.3",
"randexp": "0.5.3",
"tippy.js": "6.3.7"
},
"devDependencies": {
"@babel/preset-env": "7.29.5",
"@changesets/cli": "2.31.0",
"@eslint/js": "10.0.1",
"@faker-js/faker": "9.7.0",
"@playwright/test": "1.60.0",
"@storybook/addon-a11y": "10.4.1",
"@storybook/addon-docs": "10.4.1",
"@storybook/addon-vitest": "10.4.1",
"@storybook/html-vite": "10.4.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@vitest/browser-playwright": "4.1.7",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"globals": "17.6.0",
"husky": "9.1.7",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"jest-extended": "7.0.0",
"jsdom": "29.1.1",
"playwright": "1.60.0",
"prettier": "3.8.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"storybook": "10.4.1",
"tabulator-tables": "^6.4.0",
"vite": "8.0.16",
"vitest": "4.1.7"
},
"optionalDependencies": {
"@rolldown/binding-linux-x64-gnu": "1.0.3",
"@rolldown/binding-linux-x64-musl": "1.1.0"
}
}