-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.87 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
{
"name": "webiny-mock-data",
"version": "0.0.1",
"main": "dist/index.js",
"author": "Bruno Zorić",
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^9.0.3",
"@webiny/api-aco": "latest",
"@webiny/api-headless-cms": "latest",
"@webiny/api-page-builder": "latest",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"graphql-tag": "^2.12.6",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"p-retry": "^4.6.2",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"slugify": "^1.6.6",
"write-json-file": "^4.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.9",
"@types/node": "^20.4.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.8.0"
},
"scripts": {
"create-data": "ts-node src/index.ts --create-data",
"create-tenants": "ts-node src/index.ts --create-tenants",
"create-data-per-tenant": "ts-node src/index.ts --create-data-per-tenant",
"fetch-data": "ts-node src/index.ts --fetch-data",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --max-warnings=0",
"eslint:fix": "yarn eslint --fix",
"prettier": "prettier \"**/**/*.{js,jsx,ts,tsx,json}\" --config .prettierrc.js",
"prettier:check": "yarn prettier --check",
"prettier:fix": "yarn prettier --write",
"lint:fix": "yarn eslint:fix && yarn prettier:fix",
"compile": "tsc"
},
"packageManager": "[email protected]"
}