-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.54 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
{
"name": "scrt-counter",
"version": "0.1.0",
"description": "Demo of Secret Network Smart Contract with TypeScript, NextJS and React",
"scripts": {
"lint:eslint": "eslint './packages/**/*.{ts,tsx}'",
"lint:fix": "yarn run lint:eslint -- --fix",
"lint": "yarn run lint:eslint",
"compile": "npm run compile:contract && npm run compile:msg-schema && npm run compile:optimizer",
"compile:contract": "cd contract; cargo wasm",
"compile:msg-schema": "cd contract; cargo schema",
"compile:optimizer": "cd contract; docker run --rm -v \"$(pwd)\":/contract --mount type=volume,source=\"$(basename \"$(pwd)\")_cache\",target=/code/target --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry enigmampc/secret-contract-optimizer",
"test": "npm run test:ts && npm run test:rs && npm run test-e2e:rs",
"test:ts": "jest --config jest.config.json --silent",
"test:rs": "cd rs; RUST_BACKTRACE=1 cargo unit-test",
"test-e2e:rs": "cd contract; cargo integration-test"
},
"license": "MIT",
"author": "Joseph Cheng <indiejoseph@gmail.com>",
"dependencies": {
"react": "17.0.1",
"react-dom": "17.0.1",
"next": "10.0.7",
"secretjs": "0.11.0"
},
"devDependencies": {
"@cosmjs/crypto": "0.23.2",
"@cosmjs/launchpad": "0.23.2",
"@iov/encoding": "2.5.0",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"eslint": "7.19.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-mdx": "1.8.2",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-unicorn": "27.0.0",
"husky": "4.3.8",
"jest-environment-jsdom-sixteen": "1.0.3",
"jest": "26.6.3",
"prettier": "2.2.1",
"react-dom": "17.0.1",
"react": "17.0.1",
"rebass": "4.0.7",
"styled-components": "5.2.1",
"styled-icons": "10.27.0",
"styled-system": "5.1.5",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-order": "4.1.0",
"stylelint-processor-styled-components": "1.10.0",
"stylelint": "13.9.0",
"ts-jest": "26.5.0",
"ts-loader": "8.0.14",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"webpack": "5.19.0"
}
}