-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"name": "simondotm",
"version": "0.0.0",
"license": "MIT",
"packageManager": "pnpm@8.15.5",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "node ./tools/generate-package-versions.js",
"start": "nx serve",
"build": "nx run nx-firebase:build",
"test": "nx run nx-firebase:test",
"lint": "nx run nx-firebase:lint",
"e2e": "nx run nx-firebase-e2e:e2e --silent=false --bail=true",
"release": "cd packages/nx-firebase && npm version",
"release-help": "echo `npm run version -- v1.2.3` to set package version & commit tag",
"compat:test": "npm run build && nx run compat:build && node dist/e2e/compat/main.js",
"compat:clean": "nx run compat:build && node dist/e2e/compat/main.js --clean",
"compat:setup": "npm run build && nx run compat:build && node dist/e2e/compat/main.js --setup"
},
"private": true,
"devDependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"@nx/devkit": "16.8.1",
"@nx/eslint-plugin": "16.8.1",
"@nx/jest": "16.8.1",
"@nx/js": "16.8.1",
"@nx/linter": "16.8.1",
"@nx/node": "16.8.1",
"@nx/plugin": "16.8.1",
"@nx/webpack": "16.8.1",
"@nx/workspace": "16.8.1",
"@swc-node/register": "~1.4.2",
"@swc/core": "~1.3.51",
"@types/jest": "29.4.4",
"@types/node": "18.7.1",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"firebase": "10.10.0",
"firebase-admin": "11.11.1",
"firebase-functions": "4.8.2",
"firebase-functions-test": "3.1.1",
"firebase-tools": "12.9.1",
"jest": "29.4.3",
"jest-environment-jsdom": "28.1.3",
"kill-port": "2.0.1",
"nx": "16.8.1",
"only-allow": "^1.2.1",
"prettier": "2.8.8",
"semver": "^7.6.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.0.0",
"typescript": "4.8.4"
},
"dependencies": {
"tslib": "^2.0.0"
}
}