-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "alephium-nextjs-template",
"version": "0.1.0",
"license": "GPL",
"scripts": {
"dev": "next dev",
"start": "next start",
"export": "next export",
"build": "npm run devnet:build",
"devnet:build": "NEXT_PUBLIC_NETWORK=devnet next build",
"testnet:build": "NEXT_PUBLIC_NETWORK=testnet next build",
"mainnet:build": "NEXT_PUBLIC_NETWORK=mainnet next build",
"compile": "npx --yes @alephium/cli@latest compile",
"deploy": "npm run devnet:deploy",
"devnet:deploy": "npx --yes @alephium/cli@latest deploy -n devnet",
"testnet:deploy": "npx --yes @alephium/cli@latest deploy -n testnet",
"mainnet:deploy": "npx --yes @alephium/cli@latest deploy -n mainnet",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest -i --config ./jest-config.json",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"bracketSameLine": false,
"trailingComma": "none"
},
"dependencies": {
"@alephium/web3": "v1.5.2",
"@alephium/web3-react": "v1.5.2",
"@next/font": "13.1.4",
"axios": "^1.7.5",
"chart.js": "^4.4.4",
"detect-browser": "^5.3.0",
"eslint-config-next": "13.1.4",
"framer-motion": "^6.3.11",
"next": "13.1.4",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.26.1",
"react-toastify": "^10.0.5",
"react-transition-state": "^1.1.4",
"react-use-measure": "^2.1.1",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.3.5",
"tailwindcss": "^3.4.10"
},
"devDependencies": {
"@alephium/cli": "v1.5.2",
"@alephium/web3-test": "v1.5.2",
"@types/jest": "^27.5.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=14.0.0 <17.0.0",
"npm": ">=7.0.0"
}
}