-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.34 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@fingerprintjs/fingerprint-pro-azure-integration",
"version": "1.5.0-rc.1",
"license": "MIT",
"sideEffects": false,
"private": true,
"scripts": {
"build": "rimraf dist && NODE_OPTIONS=\"--max_old_space_size=4098\" rollup -c rollup.config.mjs && cp host.json dist && node scripts/copyLocalSettings.mjs",
"build:release": "FPDCN=fpcdn.io INGRESS_API=api.fpjs.io IS_RELEASE_BUILD=true pnpm build",
"watch": "pnpm build --watch",
"prepare": "husky install",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:dts": "tsc --noEmit --isolatedModules dist/**/*.d.ts",
"test:e2e": "npx playwright test --config e2e/playwright.config.ts",
"test:mock-e2e": "ts-node --project e2e/tsconfig.json e2e/scripts/mockTests.ts",
"emulate-storage": "azurite -l ./storage -L",
"start": "func start",
"start:example-website": "cd example-website && vite",
"build:example-website": "cd example-website && vite build",
"e2e-deploy-infra": "ts-node --project e2e/tsconfig.json e2e/infra/scripts/deploy.ts",
"e2e-destroy-infra": "ts-node --project e2e/tsconfig.json e2e/infra/scripts/destroy.ts"
},
"dependencies": {
"@azure/arm-appservice": "14.1.0",
"@azure/arm-cdn": "^9.0.0",
"@azure/arm-resources": "5.2.0",
"@azure/arm-storage": "18.2.0",
"@azure/functions": "^3.5.1",
"@azure/identity": "4.2.1",
"@azure/storage-blob": "12.17.0",
"@fingerprintjs/fingerprintjs-pro": "^3.9.2",
"cockatiel": "3.1.2",
"semver": "7.6.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@azure/arm-frontdoor": "^5.1.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@fingerprintjs/commit-lint-dx-team": "^0.0.2",
"@fingerprintjs/conventional-changelog-dx-team": "^0.1.0",
"@fingerprintjs/eslint-config-dx-team": "^0.1.0",
"@fingerprintjs/prettier-config-dx-team": "^0.1.0",
"@fingerprintjs/tsconfig-dx-team": "^0.0.2",
"@playwright/test": "^1.42.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"azurite": "^3.29.0",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "5.0.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"fetch-mock": "^9.11.0",
"glob": "^10.3.12",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"playwright": "^1.42.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.13.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-license": "^3.3.1",
"rollup-plugin-typescript2": "^0.36.0",
"tiny-invariant": "^1.3.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite": "^5.3.6"
},
"lint-staged": {
"*.ts": "pnpm lint:fix",
"*.tsx": "pnpm lint:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}