-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "gitpod-typescript",
"version": "0.0.1",
"description": "https://github.com/chlbri/gitpod-typescript.git",
"author": "chlbri <[email protected]>",
"license": "MIT",
"main":"index.js",
"typings": "index.d.ts",
"scripts": {
"tsc": "tsc",
"tsc-w": "tsc -w",
"build": "pnpm run tsc && pnpm run lint",
"test": "jest",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"eslint": "eslint \"{src/**/*,App}.{ts,tsx}\"",
"lint": "pnpm run prettier && pnpm run eslint --fix",
"pnpm": "pnpm install",
"upgrade": "ncu -u && pnpm run pnpm",
"git-push": "git push --tags"
},
"devDependencies": {
"@types/faker": "^6.6.9",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"dayjs": "^1.10.7",
"edit-json-file": "^1.7.0",
"eslint": "^8.9.0",
"faker": "^6.6.6",
"immer": "^9.0.12",
"jest": "^27.5.1",
"jest-cucumber": "^3.0.1",
"jest-extended": "^2.0.0",
"nanoid": "^3.3.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"repository": "https://github.com/chlbri/gitpod-typescript.git"
}