-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
47 lines (47 loc) · 1.93 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
{
"name": "special-pages",
"private": "true",
"version": "1.0.0",
"description": "A collection of HTML/CSS/JS pages that can be loaded into privileged environments, like about: pages",
"main": "index.js",
"type": "module",
"scripts": {
"prebuild": "node types.mjs && node translations.mjs",
"build": "node index.mjs",
"build.dev": "npm run build -- --env development",
"lint-fix": "cd ../ && npm run lint-fix",
"test-unit": "node --test \"unit-test/*\" \"pages/history/unit-tests/*\" \"pages/duckplayer/unit-tests/*\" \"pages/new-tab/app/freemium-pir-banner/unit-tests/*\"",
"test-int": "playwright test --grep-invert '@screenshots'",
"test-int-x": "npm run test-int",
"test-int-snapshots": "playwright test --grep '@screenshots'",
"test-int-snapshots-update": "playwright test --grep '@screenshots' --update-snapshots --last-failed --pass-with-no-tests",
"test.screenshots": "playwright test --grep '@screenshots'",
"test.windows": "npm run test-int -- --project windows",
"test.macos": "npm run test-int -- --project macos",
"test.ios": "npm run test-int -- --project ios",
"test.android": "npm run test-int -- --project android",
"test.headed": "npm run test-int -- --headed",
"test.ui": "npm run test-int -- --ui",
"preserve": "npm run build.dev",
"serve": "http-server -c-1 --port 3210 ../build/integration/pages",
"watch": "node watch.mjs"
},
"license": "ISC",
"devDependencies": {
"@duckduckgo/messaging": "*",
"chokidar": "^4.0.3",
"fast-check": "^4.1.1",
"http-server": "^14.1.1",
"web-resource-inliner": "^6.0.1"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.5.2",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3",
"@formkit/auto-animate": "^0.8.2",
"@preact/signals": "^2.0.1",
"@rive-app/canvas-single": "^2.26.9",
"classnames": "^2.5.1",
"lottie-web": "^5.12.2",
"preact": "^10.25.4"
}
}