-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "ownershipchecker",
"version": "1.0.0",
"description": "Standardizing ownerOf",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "parcel ./src/index.html --dist-dir public",
"watch": "parcel watch ./src/index.html",
"build": "parcel build src/index.html --dist-dir public",
"rebuild": "npm run clean && npm run build",
"clean": "npm run clean:build && npm run clean:cache",
"clean:build": "rimraf dist",
"clean:cache": "rimraf .cache && rimraf .parcel-cache",
"check": "tsc --noEmit"
},
"browserslist": "> 0.5%, last 2 versions, not IE 9-11, not dead",
"keywords": [
"ownerof",
"nft"
],
"author": "Benjamin Larcher",
"license": "ISC",
"dependencies": {
"ethers": "^5.6.7",
"node-fetch": "^2.6.7",
"parcel": "^2.5.0",
"preact": "^10.7.1",
"preact-router": "^4.0.1"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@parcel/reporter-bundle-analyzer": "^2.5.0",
"@parcel/transformer-typescript-tsc": "^2.5.0",
"@parcel/validator-typescript": "^2.5.0",
"@types/node": "^17.0.30",
"postcss": "^8.4.13",
"posthtml-doctype": "^1.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
}
}