forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.2 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
{
"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 && npm install && lerna exec 'rm -rf node_modules' && lerna bootstrap && npm run clean",
"upgrade": "rm -rf node_modules package-lock.json && npm install && lerna exec 'rm -rf node_modules package-lock.json' && lerna bootstrap && npm run clean",
"test": "lerna run test --ignore lit --ignore lit-html --ignore lit-element --ignore @lit/reactive-element --ignore @lit-labs/motion --concurrency 1 --stream",
"prepare": "husky install",
"changeset": "changeset",
"version": "npm run changeset version && npm run update-version-vars",
"update-version-vars": "node scripts/update-version-variables.js",
"release": "npm run bootstrap && npm run build && npm run changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@changesets/get-github-info": "^0.5.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@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.32.0",
"eslint-plugin-no-only-tests": "^2.4.0",
"husky": "^7.0.2",
"ignore-sync": "^4.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"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.3.5"
},
"lint-staged": {
"**/*.{cjs,html,js,json,md,ts}": "prettier --write",
"**/*.{js,ts}": "eslint --fix"
}
}