-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "activation-client",
"version": "0.1.0",
"private": true,
"scripts": {
"style:fix": "prettier --config .prettierrc.js 'src/**/*.{ts,tsx}' --write",
"lint:fix": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"fix:all": "npm run style:fix && npm run lint:fix",
"start": "webpack serve --hot",
"build": "NODE_ENV=production webpack build"
},
"dependencies": {
"@polkadot/api": "^8.4.2",
"@polkadot/extension-dapp": "^0.43.2",
"@polkadot/extension-inject": "^0.43.2",
"@polkadot/keyring": "^9.2.1",
"@polkadot/util": "^9.2.1",
"@polkadot/util-crypto": "^9.2.1",
"bn.js": "^5.2.0",
"clsx": "^1.1.1",
"framer-motion": "^6.3.3",
"ocex-api": "https://gitpkg.now.sh/bsn-si/ocex-api?d763876",
"ocex-coupon-signature-web": "https://gitpkg.now.sh/bsn-si/ocex-coupon-signature/pkg_web?fd40f08",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"reseter.css": "^2.0.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/node": "^16.11.36",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"css-loader": "^6.7.1",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"prettier": "^2.6.2",
"react-refresh-typescript": "^2.0.4",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}