-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "vylex-learning-clean-architecture",
"version": "0.0.1",
"description": "Vylex API model",
"author": "Henrique Bissoli Silva",
"license": "GPL-3.0-or-later",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^3.16.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.15",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.6",
"graphql": "^16.6.0",
"graphql-request": "^4.3.0",
"graphql-tag": "^2.12.6",
"husky": "^8.0.1",
"itty-router": "^2.6.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4",
"typescript-module-alias": "^2.2.9",
"validator": "^13.7.0",
"wrangler": "2.0.26"
},
"scripts": {
"start": "wrangler dev",
"deploy:develop": "wrangler publish -e develop",
"deploy:staging": "wrangler publish -e staging",
"deploy": "wrangler publish",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts,gql}'",
"test": "jest --passWithNoTests --runInBand --no-cache",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"prepare": "husky install"
}
}