-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "@infinityxyz/lib",
"version": "1.351.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node index.js && rimraf dist && tsc && node build-frontend.js",
"build:be": "node index.js && rimraf dist && tsc",
"lint": "eslint --ext=jsx,ts,tsx src",
"lint:fix": "eslint --fix --ext=jsx,ts,tsx src",
"prepublish": "npm run build && cp package.json dist",
"fmt:write": "prettier -w ./src",
"pre:push": "npm run lint:fix && npm run fmt:write && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinitydotxyz/lib.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/infinitydotxyz/lib/issues"
},
"homepage": "https://github.com/infinitydotxyz/lib#readme",
"prettier": {
"tabWidth": 2,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none",
"semi": true
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.185",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.27",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"strip-decorators": "^1.0.3",
"typescript": "^4.8.3"
},
"dependencies": {
"@nestjs/swagger": "^6.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"ethers": "^5.7.1",
"lodash": "^4.17.21"
},
"keywords": []
}