-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "jni-ts-template",
"version": "1.2.2",
"description": "Template to start with a fresh TypeScript project.",
"main": "App.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mopore/jni-ts-template"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "LOG_SETUP=prod mocha dist/test/**/*.js --recursive --exit",
"build": "rm -rf ./dist && tsc -b && npx eslint .",
"start": "node dist/src/App.js",
"build-image": "docker buildx build -t jni-ts-template .",
"run-container": "docker container run --rm jni-ts-template \"I am set in package.json\""
},
"keywords": [
"template",
"TypeScript"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"chai": "^5.0.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"sinon": "^17.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"dotenv": "^16.3.1",
"winston": "^3.11.0"
}
}