-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.54 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
{
"private": true,
"license": "MIT",
"author": "Luma<world@luma.email>",
"type": "module",
"scripts": {
"lint": "run-s lint:*",
"lint:eslint": "eslint \"**/*.{js,cjs,mjs,ts,tsx,json}\"",
"lint:prettier": "prettier \"**/*.html\" --list-different",
"lint-quiet": "run-s lint-quiet:*",
"lint-quiet:eslint": "pnpm run lint:eslint --quiet",
"lint-quiet:prettier": "prettier \"**/*.html\" --check --loglevel error",
"lint-fix": "run-s lint-fix:*",
"lint-fix:eslint": "pnpm run lint:eslint --fix",
"lint-fix:prettier": "prettier \"**/*.html\" --write",
"build": "pnpm --filter \"./packages/**\" build",
"test": "run-s test:*",
"test:examples": "pnpm --filter \"./examples/**\" test",
"test:build": "pnpm --filter \"./examples/**\" build"
},
"devDependencies": {
"@changesets/cli": "2.16.0",
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@jest/types": "27.0.6",
"@luma-dev/eslint-config-base": "workspace:*",
"@luma-dev/eslint-config-jest": "workspace:*",
"@luma-dev/prettier-config": "workspace:*",
"@luma-dev/tsconfig-base": "workspace:*",
"@types/jest": "27.0.1",
"commitlint": "13.1.0",
"esbuild": "0.12.22",
"eslint": "8",
"jest": "27.0.6",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"prettier-plugin-organize-imports": "2.3.4",
"rimraf": "3.0.2",
"ts-jest": "27.0.5",
"typescript": "~4.3.5"
},
"engines": {
"npm": "forbidden, use npm",
"pnpm": ">=7",
"yarn": "forbidden, use npm"
}
}