-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "linkmobilityjs",
"exports": "./dist/main.js",
"type": "module",
"volta": {
"node": "18.16.1",
"yarn": "1.22.19"
},
"engines": {
"node": ">=16"
},
"prettier": "@simenandre/prettier",
"eslintConfig": {
"extends": "@bjerk/eslint-config"
},
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development dotenv-load nodemon src/main.ts",
"format": "prettier --write . --ignore-path .gitignore ",
"format:check": "prettier --check . --ignore-path .gitignore",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage src/**/*"
},
"devDependencies": {
"@bjerk/eslint-config": "^2.2.2",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/jest": "^29.1.2",
"@types/node": "18",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"dotenv-load": "^2.0.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-unicorn": "^47.0.0",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"@simenandre/prettier": "3.0.2"
},
"license": "Apache-2.0"
}