-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "staked_icp",
"version": "0.1.0",
"private": true,
"description": "Collateralized Staked ICP",
"keywords": [
"Internet Computer",
"Motoko",
"JavaScript",
"Canister"
],
"engines": [
"v17.2.0"
],
"scripts": {
"build": "npm run build:prod",
"build:prod": "NODE_ENV=production webpack",
"prebuild": "npm run copy:types",
"start": "webpack serve --mode development --env development",
"prestart": "npm run copy:types",
"copy:types": "dfx generate --network ${DFX_NETWORK:-'local'}"
},
"dependencies": {
"@connect2ic/core": "^0.2.0-beta.24",
"@connect2ic/react": "^0.2.0-beta.24",
"@dfinity/agent": "^0.19.3",
"@dfinity/principal": "^0.19.3",
"@ethersproject/bignumber": "^5.5.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-accordion": "^0.1.5",
"@radix-ui/react-alert-dialog": "^0.1.5",
"@radix-ui/react-dialog": "^0.1.5",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-popover": "^0.1.4",
"@radix-ui/react-slider": "^0.1.4",
"@stitches/react": "^1.2.6",
"axios": "^0.26.1",
"crc": "^4.1.0",
"crypto-js": "^4.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.1.1",
"react-scripts": "^4.0.3"
},
"devDependencies": {
"@types/crypto-js": "^4.1.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"assert": "2.0.0",
"buffer": "6.0.3",
"copy-webpack-plugin": "^9.0.1",
"events": "3.3.0",
"html-webpack-plugin": "5.3.1",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"terser-webpack-plugin": "5.1.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"util": "0.12.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
]
}