-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.19 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
{
"name": "nodejs-typescript-template",
"version": "0.0.0",
"description": "A template for my nodejs projects",
"main": "prod/index.js",
"scripts": {
"db:files": "op run --no-masking --env-file='./prod.env' -- ts-node src/db/files.ts",
"db:setup": "op run --no-masking --env-file='./prod.env' -- ts-node src/db/setup.ts",
"db:teardown": "op run --no-masking --env-file='./prod.env' -- ts-node src/db/teardown.ts",
"emails:continue": "op run --no-masking --env-file='./prod.env' -- ts-node src/emails/continue.ts",
"emails:files": "ts-mocha -u tdd test/validate.spec.ts && op run --no-masking --env-file='./prod.env' -- ts-node src/emails/files.ts",
"emails:setup": "op run --no-masking --env-file='./prod.env' -- ts-node src/emails/setup.ts",
"emails:teardown": "op run --no-masking --env-file='./prod.env' -- ts-node src/emails/teardown.ts",
"scripts:block": "op run --no-masking --env-file='./prod.env' -- ts-node src/scripts/block.ts",
"scripts:clean": "op run --no-masking --env-file='./prod.env' -- ts-node src/scripts/clean.ts",
"build": "tsc",
"lint": "eslint src test --max-warnings 0",
"test": "ts-mocha -u tdd test/**/*.spec.ts --exclude test/validate.spec.ts --recursive --exit --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/naomi-lgbt/nodejs-typescript-template.git"
},
"keywords": [
"template",
"typescript",
"eslint",
"nodejs",
"prettier"
],
"author": "Naomi Carrigan",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/naomi-lgbt/nodejs-typescript-template/issues"
},
"homepage": "https://github.com/naomi-lgbt/nodejs-typescript-template#readme",
"dependencies": {
"dotenv": "16.4.7",
"mongodb": "6.11.0",
"ts-node": "10.9.2",
"winston": "3.17.0"
},
"devDependencies": {
"@nhcarrigan/eslint-config": "1.1.3",
"@nhcarrigan/prettier-config": "1.0.1",
"@nhcarrigan/typescript-config": "1.0.1",
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "18.19.67",
"chai": "4.5.0",
"eslint": "8.57.1",
"mocha": "10.8.2",
"prettier": "2.8.8",
"ts-mocha": "10.0.0",
"typescript": "5.7.2"
}
}