-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.65 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "kepler",
"version": "0.0.1-alpha.1",
"description": "Kepler is a browser extension wallet for the Inter blockchain ecosystem.",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"build:extension": "cross-env NODE_ENV=production webpack --config-name extension",
"build:web": "cross-env NODE_ENV=production webpack --config-name web",
"dev:extension": "cross-env NODE_ENV=development webpack --config-name extension",
"dev:web": "cross-env NODE_ENV=development webpack-dev-server --config-name web",
"lint-test": "eslint \"src/**/*\" webpack.config.js && prettier --check \"src/**/*\" webpack.config.js",
"lint-fix": "eslint --fix \"src/**/*\" webpack.config.js && prettier --write \"src/**/*\" webpack.config.js"
},
"pre-commit": [
"lint-test"
],
"keywords": [],
"author": "everett-protocol",
"license": "Apache-2.0",
"dependencies": {
"@everett-protocol/cosmosjs": "^0.0.3-alpha.2",
"@fortawesome/fontawesome-free": "^5.11.2",
"aes-js": "^3.1.2",
"axios": "^0.19.0",
"buffer": "^5.4.3",
"bulma": "^0.7.5",
"bulma-slider": "^2.0.0",
"classnames": "^2.2.6",
"framer-motion": "^1.6.14",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"popper.js": "^1.15.0",
"query-string": "^6.8.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hook-form": "^3.24.1",
"react-router-dom": "^5.0.1",
"scrypt-js": "^2.0.4",
"scryptsy": "^2.1.0",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/aes-js": "^3.1.0",
"@types/chrome": "0.0.88",
"@types/classnames": "^2.2.9",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^4.3.5",
"@types/scrypt-js": "^2.0.3",
"@types/sha.js": "^2.4.0",
"@types/webpack": "^4.39.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.2",
"write-file-webpack-plugin": "^4.5.1"
}
}