-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.12 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
{
"name": "edge-plugin-wyre",
"version": "0.1.2",
"private": true,
"devDependencies": {
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "4.2.1",
"babel-eslint": "^8.1.0",
"babel-helper-define-map": "6.26.0",
"babel-jest": "^20.0.3",
"edge-libplugin": "https://github.com/EdgeApp/edge-libplugin",
"edge-plugin-screens-and-components": "https://github.com/EdgeApp/edge-plugin-screens-and-components",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.8.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"flow-bin": "^0.84.0",
"history": "^4.9.0",
"husky": "^7.0.0",
"import-sort-cli": "^5.0.0",
"js-sha256": "^0.9.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^5.0.5",
"react-router-dom": "^5.0.0",
"react-scripts": "1.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.2",
"uuid": "^3.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"clean": "rimraf target build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"edge": "edge-ify -o target -s build",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"flow:0": "flow; exit 0",
"flow": "flow",
"precommit": "npm run lint && flow",
"prepare": "npm run build && npm run edge"
},
"lint-staged": {
"ignore": [
"**/flow-typed/npm/*.js"
],
"linters": {
"*.js": [
"eslint",
"prettier-eslint --list-different"
]
}
},
"prettier": {
"printWidth": 160
},
"files": [
"target/index.html",
"manifest.json"
],
"dependencies": {
"cleaners": "^0.3.12",
"js-sha256": "^0.9.0",
"moment": "^2.22.2"
}
}