-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.78 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
60
61
62
{
"name": "@dropbox/ttvc",
"version": "3.0.1",
"description": "Measure Visually Complete metrics in real time",
"repository": "https://github.com/dropbox/ttvc",
"license": "Apache-2.0",
"main": "dist/index.min.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist && rimraf lib",
"build": "npm-run-all clean --parallel build:*",
"build:tsc": "tsc --project tsconfig.build.json",
"build:rollup": "rollup --config rollup.config.js",
"test": "npm-run-all build test:*",
"test:lint": "eslint --ext .js --ext .ts ./",
"test:typecheck": "tsc --noEmit --skipLibCheck --project tsconfig.json",
"test:unit": "jest",
"test:e2e": "playwright test",
"express": "node test/server/server.mjs",
"release": "np",
"pretty": "prettier --write ."
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@rollup/plugin-typescript": "^8.3.1",
"@testing-library/dom": "^8.11.4",
"@testing-library/user-event": "^13.5.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"express": "^4.17.3",
"history": "^5.3.0",
"jest": "^27.5.1",
"np": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.2"
}
}