-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
46
47
{
"name": "micro-conta",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "node -r @swc-node/register ./src/main.ts",
"ts-node": "ts-node",
"tsc": "tsc",
"tsc:check": "npm run tsc -- --noEmit",
"build": "tsc -b ./tsconfig.json",
"build:w": "tsc -b ./tsconfig.json -w",
"clean:tsc": "rm tsconfig.tsbuildinfo",
"test": "jest",
"test:cov": "npm run test -- --coverage",
"cti": "cti",
"lint": "eslint ./src --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc-node/register": "^1.5.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.203",
"@swc/jest": "^0.2.21",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"create-ts-index": "^1.14.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"typescript@latest": "link:eslint-plugin-import/typescript@latest",
"eslint-import-resolver-node": "^0.3.6"
},
"dependencies": {
"uuid": "^8.3.2"
}
}