generated from okp4/template-oss
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 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
{
"name": "@axone/faucet-web",
"version": "1.2.1",
"private": false,
"repository": "[email protected]:axone-protocol/faucet-web.git",
"license": "BSD-3-Clause",
"description": "Token faucet web app for the AXONE network testnets.",
"homepage": "https://github.com/axone-protocol/faucet-web",
"author": {
"name": "AXONE",
"web": "https://axone.xyz"
},
"engines": {
"node": "^16.18.0",
"yarn": "~1.22.17"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && stylelint --fix '**/*.scss'",
"gen-svg-sprite:logos": "yarn run svg-sprite -s --symbol-dest='' --symbol-sprite='sprite' --dest=public/logos src/assets/logos/*.svg",
"gen-svg-sprite": "yarn gen-svg-sprite:logos",
"clean-svg:logos": "yarn run svgo -f ./src/assets/logos --exclude 'sprite.svg' -o ./src/assets/logos",
"clean-svg": "yarn clean-svg:logos"
},
"dependencies": {
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@okp4/eslint-config": "^1.1.0",
"@okp4/ui": "^5.1.1",
"@types/node": "18.11.17",
"@types/react": "18.2.11",
"@types/react-dom": "18.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"eslint": "8.32.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"stylelint": "^14.15.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-scss": "^4.3.0",
"svg-sprite": "^1.5.4",
"svgo": "^2.8.0"
}
}