-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.84 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.84 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": "lit-monorepo",
"private": true,
"type": "module",
"scripts": {
"benchmarks": "cd packages/benchmarks && npm run benchmarks",
"bootstrap": "lerna bootstrap --ci",
"build": "lerna run build",
"build:ts": "lerna run build:ts",
"clean": "lerna run clean",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint \"**/*.{js,ts}\" --fix",
"format:prettier": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --write",
"ignore-sync": "ignore-sync .",
"lint": "eslint \"**/*.{js,ts}\"",
"nuke": "rm -rf node_modules package-lock.json && npm install && lerna exec 'rm -rf node_modules package-lock.json' && lerna bootstrap && npm run clean",
"test": "(cd packages/tests && npm test) && (cd packages/labs/ssr && npm test) && (cd packages/localize && npm test) && (cd packages/localize-tools && npm test) && (cd packages/lit-starter-ts && npm test) && (cd packages/lit-starter-js && npm test)",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-virtual": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"as-table": "^1.0.55",
"babel-eslint": "^10.1.0",
"chalk": "^4.1.0",
"eslint": "^7.17.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"husky": "^6.0.0",
"ignore-sync": "^3.1.0",
"lerna": "^4.0.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-summary": "^1.2.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.3"
},
"lint-staged": {
"**/*.{cjs,html,js,json,md,ts}": "prettier --write",
"**/*.{js,ts}": "eslint --fix"
}
}