-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.9 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
76
77
78
79
80
81
82
83
84
85
{
"name": "metrix-dapp-boilerplate",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"gen-sitemap": "node ./scripts/generate-sitemap.mjs",
"gen-robots": "node ./scripts/generate-robots.mjs",
"postbuild": "npm run gen-sitemap && npm run gen-robots",
"dev": "cross-env NODE_ENV=development nodemon",
"build-next": "cross-env NODE_ENV=production next build",
"build-server": "tsc --project ./server/tsconfig.json",
"build-worker": "tsc --project ./server_worker/tsconfig.json",
"build-dev": "npm run build-server && npm run build-worker && npm run build-next",
"build": "npm run build-dev && npm run postbuild",
"start-dev": "cross-env NODE_ENV=development node .build/server/index.js",
"start": "cross-env NODE_ENV=production node .build/server/index.js",
"lint-server": "eslint \"./server/**/*\"",
"lint-worker": "eslint \"./server_worker/**/*\"",
"lint-next": "next lint",
"lint": "npm run lint-server && npm run lint-worker && npm run lint-next",
"migrate": "npx sequelize-cli db:migrate",
"seed": "npx sequelize-cli db:seed:all"
},
"author": "SeqSEE, squidicuzz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SeqSEE/metrix-dapp-boilerplate.git"
},
"bugs": {
"url": "https://github.com/SeqSEE/metrix-dapp-boilerplate/issues"
},
"homepage": "https://github.com/SeqSEE/metrix-dapp-boilerplate#readme",
"description": "",
"dependencies": {
"@fontsource/ubuntu": "^4.4.5",
"@metrixcoin/metrilib": "^1.5.7-beta",
"@metrixnames/mnslib": "^2.1.7",
"axios": "^0.24.0",
"b58": "^4.0.3",
"bitcoinjs-message": "^2.2.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"ethers": "^6.0.2",
"express": "^4.18.2",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"jsonwebtoken": "^8.5.1",
"locks": "^0.2.2",
"moment": "^2.29.4",
"next": "^13.0.6",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.4",
"sequelize": "^6.26.0",
"sqlite3": "^5.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-dev-server": "^4.11.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.6",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/locks": "^0.2.1",
"@types/node": "^18.11.11",
"@types/sequelize": "^4.28.14",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/types": "^6.0.7",
"eslint": "^8.29.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1"
}
}