-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 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
60
61
62
63
64
65
{
"name": "template-nodejs-typescript",
"version": "1.0.0",
"description": "",
"main": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "npm run clean && tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json",
"clean": "rimraf dist/",
"dev": "nodemon --quiet",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"start": "node ./dist/cjs/index.js",
"start:dev": "yarn build && node ./dist/cjs/index.js",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest"
},
"author": "npv2k1",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.74",
"@swc/helpers": "^0.5.1",
"@types/jest": "28.1.6",
"@types/lodash": "^4.14.197",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"concurrently": "^7.6.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "28.1.3",
"nodemon": "^2.0.22",
"prettier": "2.7.1",
"regenerator-runtime": "^0.13.11",
"rimraf": "^3.0.2",
"ts-jest": "28.0.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.0",
"typescript": "4.7.4",
"unbuild": "^1.2.1"
}
}