forked from cobuildlab/create-nodejs-typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.52 KB
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
60
61
62
63
64
65
66
{
"name": "@cobuildlab/shawcor-api",
"version": "1.0.0",
"description": "Enverus API for Shawcor",
"main": "./app.ts",
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"serve": "nodemon app.ts",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prepare": "npx husky install",
"test": "jest",
"postinstall": "husky install"
},
"author": "Gressia",
"license": "ISC",
"dependencies": {
"@cobuildlab/pure-logger": "^1.2.1",
"dotenv": "^16.0.1",
"escape-xml": "^1.0.2",
"express": "^4.18.1",
"fast-xml-parser": "^3.19.0",
"form-data": "^3.0.1",
"jest": "^27.5.1",
"node-fetch": "^2.6.7"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|node_modules)/"
],
"testRegex": [
".test.ts$",
".test.tsx$"
]
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^37.8.2",
"husky": "^7.0.4",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"yup": "^0.32.11"
}
}