-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
48
49
50
51
52
{
"name": "typescript-boilerplate",
"version": "1.0.0",
"description": "",
"main": " ",
"author": {
"name": "Eduardo Almeida",
"url": "https://github.com/web2solutions",
"email": "[email protected]"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/thecleanarchitecture/typescript-boilerplate.git"
},
"bugs": {
"url": "https://github.com/thecleanarchitecture/typescript-boilerplateg/issues"
},
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/jest --ci --verbose --coverage",
"start": "node index.js",
"lint": "eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/preset-typescript": "7.18.6",
"@types/jest": "28.1.3",
"@types/node": "18.7.5",
"@types/source-map-support": "0.5.4",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"babel-jest": "28.1.3",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-no-async-foreach": "^0.1.1",
"jest": "28.1.3",
"ts-jest": "28.0.8",
"ts-loader": "9.3.1",
"typescript": "4.7.4",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"uuid": "^9.0.0"
}
}