forked from AstarNetwork/wasm-flipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "wasm-flipper",
"version": "0.1.0",
"private": true,
"dependencies": {
"@astar-network/astar-api": "^0.1.12",
"@polkadot/api": "^9.5.1",
"@polkadot/api-contract": "^9.5.1",
"@polkadot/extension-dapp": "^0.44.6",
"@supercolony/typechain-compiler": "^0.5.1-beta.1",
"@supercolony/typechain-polkadot": "^0.5.0",
"@supercolony/typechain-types": "^0.0.16",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.26.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^29.3.1",
"next": "12.3.1",
"patch-package": "^6.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.0"
},
"devDependencies": {
"@types/node": "18.8.4",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"typescript": "4.8.4"
},
"scripts": {
"compile": "typechain-compiler",
"compile:release": "typechain-compiler --release",
"test:single": "jest",
"test:typechain": "jest --testPathPattern \".spec.ts$\" --runInBand",
"postinstall": "patch-package",
"dev": "cd ui && next dev",
"build": "cd ui && next build",
"start": "cd ui && next start",
"lint": "cd ui && next lint"
},
"resolutions": {
"@polkadot/api": "^9.6.1",
"@polkadot/api-contract": "^9.6.1"
}
}