This repository was archived by the owner on Dec 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.85 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
{
"name": "dexie-addon-suite-monorepo",
"version": "0.0.0",
"description": "Collection of dexie addons",
"private": true,
"author": "PVermeer",
"license": "MIT",
"scripts": {
"lerna": "lerna",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"eslint": "eslint --max-warnings=0 --config .eslintrc.json --ignore-path .gitignore",
"eslint:fix": "npm run eslint -- --fix",
"eslint:commit": "npm run eslint:fix -- --rule import/no-extraneous-dependencies:off",
"format": "npm run prettier .",
"format:write": "npm run prettier:write .",
"prettier": "prettier --ignore-unknown --check --config .prettierrc.json --ignore-path .gitignore",
"prettier:write": "npm run prettier -- --write",
"build": "git fetch origin master && lerna run build --include-dependencies --since",
"build:beta": "git fetch origin beta && lerna run build --include-dependencies --since beta",
"build:master": "git fetch origin master && lerna run build --include-dependencies --since master",
"build:full": "lerna run build",
"test:all": "lerna run test --parallel --stream",
"test": "npm run build && npm run test:all -- --since",
"test:beta": "npm run build:beta && npm run test:all -- --since beta",
"test:master": "npm run build:master && npm run test:all -- --since master",
"test:full": "npm run build:full && npm run test:all",
"version": "bash ./scripts/version.sh",
"release": "bash ./scripts/release.sh",
"deps:update:latest": "bash ./scripts/update-dependencies.sh",
"deps:update:latest:ci": "bash ./scripts/update-dependencies.sh only-update",
"prepare": "husky install && patch-package --error-on-fail"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*": "npm run prettier:write",
"*.ts": "npm run eslint:commit"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/config-lerna-scopes": "^17.2.1",
"@types/faker": "^5.5.9",
"@types/is-ci": "^3.0.0",
"@types/jasmine": "^4.3.1",
"@types/karma": "^6.3.3",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.flatten": "^4.4.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.uniqwith": "^4.5.7",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"dexie": "^3.2.7",
"dts-bundle-generator": "^7.1.0",
"esbuild": "^0.16.9",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-ban": "^1.6.0",
"eslint-plugin-import": "^2.26.0",
"faker": "^5.5.3",
"fork-ts-checker-webpack-plugin": "^7.2.14",
"husky": "^8.0.2",
"is-wsl": "^2.2.0",
"jasmine": "^4.5.0",
"jasmine-console-reporter": "^3.1.0",
"jasmine-core": "^4.5.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-jasmine-seed-reporter": "^0.2.0",
"karma-mocha-reporter": "^2.2.5",
"karma-parallel": "^0.3.1",
"karma-webpack": "^5.0.0",
"lerna": "^6.1.0",
"license-webpack-plugin": "^4.0.2",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.6.0",
"patch-package": "^6.5.0",
"prettier": "^2.8.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/PVermeer/dexie-addon-suite-monorepo.git"
},
"bugs": {
"url": "https://github.com/PVermeer/dexie-addon-suite-monorepo/issues"
},
"homepage": "https://github.com/PVermeer/dexie-addon-suite-monorepo#readme"
}