-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "app-engine-version-cleaner",
"version": "1.0.0",
"description": "Keep your App Engine versions clean and tidy",
"repository": "[email protected]:SantiMA10/app-engine-version-cleaner.git",
"author": "Santiago Martín Agra <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"start:watch": "nodemon --watch 'src' -e ts --exec 'ts-node' --files ./src/index.ts",
"test:watch": "jest --watch",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@hapi/hapi": "^20.1.2",
"cloudevents": "^4.0.1",
"http-status-codes": "^2.1.4",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@santima10/eslint-config": "1.3.0",
"@types/hapi__hapi": "^20.0.7",
"@types/jest": "^26.0.22",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"eslint": "7",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"nock": "^13.0.11",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"prettier": "@santima10/eslint-config/.prettierrc.json"
}