-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.85 KB
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
{
"name": "2c-eth-denver-2021",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest",
"dev": "nodemon --watch contract --ignore contract/build/ -e ts --exec \"next dev -p 8080\"",
"build": "npm run near:build:contract && npm run build:web",
"near:build:contract": "node contract/compile.js",
"near:build:contract:debug": "node contract/compile.js --debug",
"near:dev:deploy:contract": "near dev-deploy",
"near:deploy:contract": "near deploy",
"build:web": "next build",
"deploy": "npm run build && npm run near:deploy:contract",
"predev": "npm run near:build:contract:debug && npm run near:dev:deploy:contract",
"start": "next start",
"storybook": "start-storybook -p 6006 --no-dll",
"build-storybook": "build-storybook --no-dll"
},
"dependencies": {
"3id-connect": "^1.0.0-alpha.15",
"3id-did-provider": "^0.5.1",
"@ceramicnetwork/http-client": "^0.9.6",
"@ceramicstudio/idx": "^0.7.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"axios": "^0.21.0",
"graphql": "^15.4.0",
"near-api-js": "^0.36.3",
"ipfs-http-client": "^49.0.2",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"next": "9.5.5",
"next-with-apollo": "^5.1.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dropzone": "^11.3.1",
"styled-components": "^5.2.1",
"web3": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@ceramicstudio/idx-tools": "^0.7.0",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/react": "^6.0.28",
"nodemon": "~2.0.3",
"babel-loader": "^8.2.1",
"jest": "^26.6.1",
"react-is": "^17.0.1"
}
}