-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "course-dapp",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export && touch out/.nojekyll",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add -f out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@blockchain-lab-um/masca-connector": "0.3.1",
"@blockchain-lab-um/masca-types": "0.3.1",
"@blockchain-lab-um/utils": "1.2.0",
"@veramo/core": "^4.2.0",
"autoprefixer": "^10.4.7",
"axios": "^0.26.1",
"dotenv": "^16.0.1",
"eslint-config-prettier": "^8.5.0",
"ethers": "^5.6.0",
"ethr-did": "^2.2.0",
"ethr-did-resolver": "^5.0.4",
"fs": "^0.0.1-security",
"lodash": "^4.17.21",
"next": "12.2.2",
"postcss": "^8.4.13",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-modal": "^3.14.4",
"react-spinners": "^0.11.0",
"tailwindcss": "^3.0.24",
"use-state-with-callback": "^2.0.3"
},
"devDependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.13",
"@types/react": "17.0.38",
"eslint": "8.8.0",
"eslint-config-next": "12.2.2",
"prettier": "^2.5.1",
"typescript": "4.5.5"
},
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">=18.16.0"
}
}