forked from lit/lit.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.12 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
59
{
"name": "lit.dev",
"private": true,
"version": "0.0.0",
"description": "Monorepo root package for lit.dev",
"author": "Google LLC",
"license": "BSD-3-Clause",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "wireit",
"start": "run-p -r start:main start:playground start:fake-github",
"start:main": "LITDEV_ENV=local MODE=main npm run start -w lit-dev-server",
"start:playground": "LITDEV_ENV=local MODE=playground npm start -w lit-dev-server",
"start:fake-github": "wireit",
"dev": "cd packages/lit-dev-server && npm run build && cd ../lit-dev-content && (npm run dev:build:assets --watch & npm run dev:build:eleventy:watch & node ../lit-dev-tools-esm/lib/dev-server.js --open)",
"format": "prettier . --write",
"format:check": "prettier . --check",
"nuke": "rm -rf node_modules packages/*/node_modules && npm ci",
"upgrade": "rm -rf node_modules package-lock.json packages/*/node_modules && npm i",
"test:unit": "npm run test -w lit-dev-tools-cjs",
"test:integration": "npm run test:integration -w lit-dev-tests",
"test:integration:update-golden-screenshots": "npm run test:integration:update-golden-screenshots -w lit-dev-tests",
"test:links": "npm run test:links -w lit-dev-tests",
"publish-search-index": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"./packages/lit-dev-api:build",
"./packages/lit-dev-content:build",
"./packages/lit-dev-server:build",
"./packages/lit-dev-tests:build",
"./packages/lit-dev-tools-cjs:build",
"./packages/lit-dev-tools-esm:build"
]
},
"start:fake-github": {
"dependencies": [
"./packages/lit-dev-tools-esm:build"
],
"command": "LITDEV_ENV=local node packages/lit-dev-tools-esm/lib/fake-github-server.js",
"output": []
},
"publish-search-index": {
"dependencies": [
"./packages/lit-dev-tools-esm:publish-search-index"
]
}
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"playground-elements": "^0.16.2",
"prettier": "^2.1.2",
"typescript": "~4.6.2",
"wireit": "^0.6.1"
}
}