-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.15 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
{
"name": "ic-rust-nextjs",
"version": "1.0.1",
"author": "b3hr4d <[email protected]>",
"description": "Internet Computer Rust + NextJS Template",
"keywords": [
"nextjs",
"rust",
"internet computer",
"icp",
"starter",
"dfinity"
],
"scripts": {
"install:all": "(yarn -v && yarn || 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:pull": "dfx deps pull && dfx deps init",
"dfx:start": "dfx start --background --clean",
"dfx:build": "sh ./predeploy.sh && dfx build",
"dfx:identity": "dfx deps deploy internet_identity",
"dfx:generate": "dfx generate"
},
"dependencies": {
"@ic-reactor/react": "^1.2",
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"dotenv": "^16.4.5",
"typescript": "^5.5.3"
}
}