This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
61 lines (61 loc) · 1.94 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
{
"name": "embeddable-nfts",
"version": "0.5.0",
"description": "Reusable, embeddable webcomponent for OpenSea assets.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:demo": "webpack-dev-server --config ./webpack.dev.config.js",
"build": "webpack --config ./webpack.config.js",
"lint": "tslint --project . 'src/**/*.ts'",
"lint:fix": "tslint --project . 'src/**/*.ts' --fix",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectOpenSea/embeddable-nfts.git"
},
"author": "Taylor Dawson",
"license": "ISC",
"bugs": {
"url": "https://github.com/ProjectOpenSea/embeddable-nfts/issues"
},
"homepage": "https://github.com/ProjectOpenSea/embeddable-nfts#readme",
"dependencies": {
"lit-element": "^3.0.2",
"lit-html": "^2.0.2",
"opensea-js": "^1.1.0",
"web3": "^1.6.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && git add dist"
}
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@webcomponents/webcomponentsjs": "^2.6.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^7.0.4",
"prettier": "^2.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^8.2.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.5.2",
"web3-core": "^1.6.1",
"web3-typescript-typings": "^0.10.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
}
}