-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "firebase-kpoapp",
"version": "1.0.0",
"description": "kpoapp setting in firebase",
"author": "Atsutomo Tabata",
"scripts": {
"test": "firebase emulators:exec --only firestore 'jest --silent'",
"watch": "npm test -- --watch",
"check-types": "tsc --noEmit",
"format": "prettier --write 'test/**/*.ts'",
"eslint": "eslint 'test/**/*.ts'",
"eslint:fix": "eslint test/**/*.ts --fix",
"lint": "npm-run-all eslint check-types",
"lint:fix": "npm-run-all eslint:fix check-types format"
},
"jest": {
"transform": {
"\\.ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "test/.*test.ts",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testEnvironment": "node"
},
"devDependencies": {
"@firebase/testing": "^0.20.11",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "8.3.0",
"filesystem": "^1.0.1",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"source-map-support": "^0.5.19",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"firebase": "^7.18.0",
"firebase-admin": "^9.11.0",
"firebase-functions": "^3.14.1"
}
}