-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.62 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
{
"name": "Google Publisher Tag Playground",
"version": "1.0.0",
"description": "An interactive GPT sample configurator and code playground.",
"type": "module",
"engines": {
"node": ">=11.0.0"
},
"scripts": {
"build": "npm run build:l10n && npm run fix && npm run build:ts && npm run build:rollup",
"build:l10n": "lit-localize extract && npm run build:l10n-test && lit-localize build",
"build:l10n-test": "npx -y tsx@latest scripts/gen-test-locale.ts",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"fix": "gts fix",
"lint": "gts lint",
"serve": "wds --node-resolve --watch --root-dir dist/",
"test": "npm run build:ts && jasmine --config=jasmine.json",
"test:playwright": "playwright test"
},
"dependencies": {
"@lit/localize": "^0.12.2",
"lit": "^3.2.1",
"lodash-es": "^4.17.21",
"playground-elements": "^0.18.1",
"playwright": "^1.49.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2"
},
"devDependencies": {
"@lit/localize-tools": "^0.8.0",
"@playwright/test": "^1.49.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/google-publisher-tag": "^1.20241118.0",
"@types/jasmine": "^5.1.5",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.9",
"@web/dev-server": "^0.3.7",
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
"glob": "^10.4.5",
"jasmine": "^5.4.0",
"rollup": "^2.79.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"ts-node": "^10.9.2",
"gts": "^6.0.2"
}
}