-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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": "node-bird-router-api",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "swc src --out-dir dist",
"build:types": "yarn build",
"test:unit": "mocha --no-warnings 'tests/unit/**/*.spec.ts'",
"test:unit-coverage": "c8 yarn test:unit",
"test:ci-unit": "c8 yarn test:unit --reporter mocha-junit-reporter",
"test:types": "tsc --noEmit",
"test:ci-copy-result-and-coverage": "shx mv test-results.xml ../../ && shx mv coverage ../../",
"lint": "eslint \"src/**/*.ts\"",
"start": "node dist/index.js",
"dev": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm --watch src src/index.ts"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.20.0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.95",
"@types/chai-as-promised": "^7",
"@types/chai-subset": "^1",
"@types/mocha": "^10",
"@types/node": "^20.8.10",
"@types/sinon": "^17",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"c8": "^9.1.0",
"chai": "^5.0.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.2",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-require-extensions": "^0.1.3",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"nodemon": "^3.0.1",
"prettier": "^3.4.2",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}