-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.52 KB
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
{
"name": "ic-rust-nextjs",
"version": "2.0.0",
"author": "b3hr4d <b3hr4d@live.com>",
"description": "Internet Computer Rust + NextJS Template (IC Reactor v3)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/b3hr4d/ic-rust-nextjs.git"
},
"bugs": {
"url": "https://github.com/b3hr4d/ic-rust-nextjs/issues"
},
"homepage": "https://github.com/b3hr4d/ic-rust-nextjs#readme",
"keywords": [
"nextjs",
"rust",
"internet computer",
"icp",
"dfinity",
"ic-reactor",
"template",
"starter",
"boilerplate",
"dapp",
"web3"
],
"scripts": {
"template:init": "node scripts/init-template.js",
"install:all": "npm install && npm run ic-wasm:install && npm run candid:install",
"candid:install": "cargo install candid-extractor",
"ic-wasm:install": "cargo install ic-wasm",
"build": "next build",
"start": "next start",
"export": "next build",
"dev": "next dev",
"deploy": "dfx deploy",
"dfx:stop": "dfx stop",
"dfx:start": "dfx start --background --clean",
"dfx:build": "sh ./predeploy.sh && dfx build",
"dfx:generate": "dfx generate"
},
"dependencies": {
"@ic-reactor/react": "^3.0.0",
"@icp-sdk/auth": "^5.0.0",
"@icp-sdk/core": "^5.0.0",
"@tanstack/react-query": "^5.90",
"next": "^16.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"dotenv": "^17.2.3",
"typescript": "^5.9.3"
}
}