-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
{
"name": "fingerprint-pro-server-api-openapi",
"private": true,
"version": "2.2.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "webpack-dev-server --open",
"build": "webpack",
"lintSchema": "vacuum lint ./schemas/*.yaml -d --errors --base schemas",
"lintSchemaDist": "vacuum lint ./dist/schemas/*.yaml -d --errors --base dist/schemas",
"validateSchema": "tsx ./bin/validateSchema.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:dts": "echo 'No typescript tests' && exit 0",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --check",
"prettier:fix": "pnpm prettier . --write",
"changeset": "node scripts/changeset.js",
"changeset-version": "node scripts/zipChangesets.js && pnpm exec changeset version"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@fingerprintjs/changesets-changelog-format": "^0.2.0",
"@fingerprintjs/conventional-changelog-dx-team": "^0.1.0",
"@fingerprintjs/eslint-config-dx-team": "^0.1.0",
"@fingerprintjs/fingerprintjs-pro-server-api": "^4.1.2",
"@fingerprintjs/prettier-config-dx-team": "^0.1.0",
"@fingerprintjs/tsconfig-dx-team": "^0.0.2",
"@quobix/vacuum": "^0.9.16",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/swagger-ui": "^3.52.4",
"ajv": "^8.16.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"glob": "^11.0.0",
"html-webpack-plugin": "^5.6.0",
"human-id": "^4.1.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"json-loader": "^0.5.7",
"playwright": "^1.45.1",
"style-loader": "^3.3.4",
"swagger-ui": "^5.17.14",
"ts-loader": "^9.5.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"yaml": "^2.4.5",
"yaml-loader": "^0.8.1",
"zip-lib": "^1.0.4",
"znv": "^0.4.0",
"zod": "^3.23.8"
},
"dependencies": {
"@types/prompts": "^2.4.9",
"prompts": "^2.4.2"
}
}