-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.41 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
{
"name": "nfnovel-dapp",
"version": "1.0.0",
"description": "NFNovel Encode Polygon Hackathon project",
"scripts": {
"client": "npm --prefix ./client",
"client:": "npm run client -- run",
"evm": "npm --prefix ./evm",
"evm:": "npm run evm -- run",
"install": "npm run evm -- install --no-audit && npm run client -- install --no-audit",
"audit": "npm run evm -- audit --production && npm run client -- audit --production",
"build:evm": "npm run evm: -- build",
"build:client": "npm run client: -- build",
"build": "npm run build:evm && npm run build:client",
"test:evm": "npm run evm -- test",
"test:client": "npm run client: -- test",
"pretest": "npm run audit",
"test": "npm run test:evm && npm run test:client",
"dev:evm": "npm run evm: -- dev",
"dev:client": "npm run client: -- dev",
"dev": "concurrently \"npm run dev:*\"",
"predeploy": "vercel build",
"deploy": "vercel deploy --prebuilt"
},
"keywords": [],
"author": "the-vampiire",
"license": "UNLICENSED",
"devDependencies": {
"concurrently": "^7.1.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.0.1",
"@typescript-eslint/parser": "^5.0.1",
"eslint": "^7.3.2",
"eslint-config-prettier": "^8.0.0",
"prettier": "^2.4.1",
"typescript": "^4.6.3",
"vercel": "^25.1.0"
},
"dependencies": {
"ethers": "^5.6.8",
"next": "12.1.5"
}
}