-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.31 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@uid2/uid2-sdk",
"version": "3.9.0",
"description": "UID2 Client SDK",
"author": "The Trade Desk",
"repository": {
"type": "git",
"url": "git+https://github.com/iabtechlab/uid2-web-integrations.git"
},
"license": "Apache 2.0",
"wallaby": {
"delays": {
"run": 1000
}
},
"scripts": {
"lint": "eslint -c .eslintrc.js . ../static/js/uid2-sdk-2.0.0.js ../static/js/uid2-sdk-1.0.0.js",
"test": "jest",
"build": "webpack",
"build-with-sourcemaps": "webpack --mode=production --env prodSourceMaps=true",
"build-package": "unbuild",
"watch": "webpack watch --mode=development",
"webpack-dev-server": "webpack-dev-server --config webpack-dev-server.config.js --hot --port 9091",
"uid2-examples": "webpack --mode=development --env outputToExamples=true",
"build:esp": "webpack --env espOnly=true",
"createCA": "tsx createCA.ts",
"localtest": "cd localtest && tsx server.ts"
},
"engines": {
"node": ">=18"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./setupJest.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"devDependencies": {
"@jest/globals": "^29.2.2",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.3",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"css-loader": "^7.1.2",
"eslint": "^8.25.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-testing-library": "^5.9.0",
"html-bundler-webpack-plugin": "^4.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jsdom": "^20.0.1",
"mkcert": "^3.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.79.3",
"sass-loader": "^16.0.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"tsx": "^4.19.1",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"path-to-regexp": "^8.2.0"
}
}