forked from Mirror-Protocol/mirror-airdrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@mirror-protocol/mirror-airdrop",
"version": "1.1.0",
"description": "Airdrop implementation",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc --module commonjs && webpack --mode production",
"test": "jest",
"prettier": "prettier --write ./src/**/*.ts",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"doc": "typedoc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mirror-Protocol/mirror-airdrop.git"
},
"lint-staged": {
"./src/**/*.ts": [
"prettier --write",
"eslint"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "always"
},
"author": "YunYeo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mirror-Protocol/mirror-airdrop/issues"
},
"homepage": "https://github.com/Mirror-Protocol/mirror-airdrop#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^15",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.46",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.0",
"jest": "^27.2.5",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"ts-jest": "^27.0.6",
"ts-loader": "^8.0.11",
"ts-node": "^9.0.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"webpack": "^4",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"keccak256": "^1.0.2",
"merkletreejs": "0.2.16",
"request": "^2.88.2",
"request-promise": "^4.2.6"
}
}