-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
53
54
55
56
57
58
59
{
"name": "typescript-nodejs-template",
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.13.0",
"pnpm": ">=6.22.0"
},
"type": "module",
"scripts": {
"dev": "nodemon",
"build": "rimraf ./dist && tsc -p tsconfig-build.json && tscpaths -p tsconfig-build.json -s ./src -o ./dist && rimraf ./dist/mock",
"lint": "eslint --cache ./src --ext .ts",
"lint-and-fix": "eslint --cache ./src --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc './src/**/*.ts' --write",
"start": "ts-node-esm -r tsconfig-paths/register src/index",
"prod": "node dist/index.js",
"test": "jest",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@shopify/eslint-plugin": "^40.5.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-shopify": "^35.1.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.0.3",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"tscpaths": "^0.0.9",
"typescript": "5.0.0-dev.20221227"
},
"dependencies": {
"dotenv": "^16.0.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.ts": "eslint --cache --fix"
}
}