-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
53
{
"name": "web3-serverless-days-app",
"version": "1.0.0",
"description": "Web3 codefest: mint an NFT by talk end - Hands-on project",
"repository": "github:ghidosoft/web3-serverless-days",
"main": "dist/index.js",
"scripts": {
"lint": "npm run lint:eslint && num run lint:style",
"lint:eslint": "eslint . --color --ext .ts,.tsx",
"lint:style": "stylelint src",
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"author": "Andrea Ghidini <[email protected]>",
"license": "MIT",
"browserslist": [
"defaults"
],
"devDependencies": {
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"autoprefixer": "^10.2.6",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"postcss-loader": "^6.1.0",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.1.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bootstrap": "^5.0.2",
"ethers": "^5.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"tiny-typed-emitter": "^2.1.0"
}
}