-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.76 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
{
"name": "node-typescript-jest-boilerplate",
"version": "0.0.1",
"description": "NodeJS typescript + jest boilerplate",
"keywords": [
"boilerplate",
"typescript",
"jest"
],
"type": "module",
"author": "Brian Schlenker <bschlenk@umich.edu>",
"license": "MIT",
"repository": "bschlenk/node-typescript-jest-boilerplate",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!**/__tests__/**/*"
],
"scripts": {
"prepare": "husky install",
"clean": "rm -rf build coverage",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "npm run jest -- --watch",
"test": "npm run lint && npm run test:unit",
"watch": "nodemon",
"build": "tsc",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-jest": "^29.7.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.0",
"jest": "^29.7.0",
"jest-esm-transformer": "^1.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@concordium/web-sdk": "^9.0.0",
"ethers": "^6.13.5"
}
}