-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.06 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
{
"name": "@dappykit/my-library",
"version": "1.1.0",
"description": "Library for Node.js and the browser using Typescript template",
"main": "dist/index.min.js",
"types": "dist/src/index.d.ts",
"browser": {
"./dist/index.min.js": "./dist/index.browser.min.js",
"data": "data.browser"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "rimraf dist && npm run compile:types && npm run compile:browser --env mode=production && npm run compile:node --env mode=production",
"test": "jest",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"check:types": "tsc --project tsconfig.test.json",
"compile:node": "webpack --progress --env target=node",
"compile:types": "tsc --emitDeclarationOnly --declaration",
"compile:browser": "webpack --progress --env target=web"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@types/supertest": "^2.0.16",
"@types/webpack-bundle-analyzer": "^4.6.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"glob": "^10.3.10",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"buffer": "^6.0.3",
"ethers": "^6.9.0"
}
}