-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 924 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 924 Bytes
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
{
"name": "app",
"version": "1.0.0",
"main": "./src/index.js",
"engines": {
"node": "12"
},
"scripts": {
"test": "jest",
"start": "functions-framework --target=app --source=src",
"dev": "nodemon"
},
"dependencies": {
"fastify": "^3.7.0"
},
"devDependencies": {
"@google-cloud/functions-framework": "^1.7.1",
"@ruanmartinelli/prettier-config": "^1.0.0",
"jest": "^26.6.1",
"nodemon": "^2.0.6"
},
"prettier": "@ruanmartinelli/prettier-config",
"nodemonConfig": {
"delay": "500",
"watch": "src",
"exec": "npm start || exit 1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"rootDir": ".",
"testRegex": ".spec.js$",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist",
"<rootDir>/node_modules/"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
]
}
}