-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.65 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
{
"name": "shiny",
"description": "easy nft avatars and badges for events",
"version": "0.0.1",
"private": true,
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "^5.2.0",
"@mui/material": "latest",
"@segment/analytics-next": "^1.31.2",
"@sendgrid/mail": "^7.6.0",
"@types/ioredis": "^4.28.1",
"axios": "^0.24.0",
"clsx": "latest",
"hash-wasm": "^4.9.0",
"ioredis": "^4.28.1",
"near-api-js": "^0.43.1",
"next": "latest",
"nft.storage": "^5.0.0",
"react": "latest",
"react-dom": "latest",
"uuid": "^8.3.2"
},
"scripts": {
"dev": "env-cmd -f ./neardev/dev-account.env next",
"build": "npm run build:contract && npm run build:web",
"build:contract": "node contract/compile.js",
"build:contract:debug": "node contract/compile.js --debug",
"build:web": "next build",
"dev:deploy:contract": "near dev-deploy",
"deploy:contract": "near deploy",
"lint": "next lint",
"deploy": "npm run build && npm run deploy:contract && npm run deploy:pages",
"prestart": "npm run build:contract:debug && npm run dev:deploy:contract",
"test": "npm run build:contract:debug && cd contract && cargo test -- --nocapture && cd .. && jest test --runInBand"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "^8.3.3",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.4",
"near-cli": "^2.2.0",
"shelljs": "^0.8.4",
"typescript": "latest"
}
}