-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.86 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "bitnation-pangea-desktop",
"version": "0.0.1",
"description": "bitnation-pangea-desktop",
"main": "index.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"format": "prettier --write '{.,__tests__,src/**}/*.{js,jsx,ts,tsx}'",
"tslint": "node_modules/.bin/tslint -p tsconfig.json",
"tslint-fix": "node_modules/.bin/tslint --fix -p tsconfig.json",
"lint": "npm run format; npm run tslint-fix",
"precommit": "lint-staged",
"test": "cross-env NODE_ENV=test babel-node test/sagas.js | tap-spec",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"pack:all": "npm run compile && electron-builder -mwl",
"pack:mac": "npm run compile && electron-builder --mac",
"pack:win": "npm run compile && electron-builder --win",
"pack:linux": "npm run compile && electron-builder --linux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bit-Nation/BITNATION-Pangea-desktop.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bit-Nation/BITNATION-Pangea-desktop/issues"
},
"homepage": "https://github.com/Bit-Nation/BITNATION-Pangea-desktop#readme",
"dependencies": {
"@clarketm/saga-monitor": "^1.0.6",
"@material-ui/core": "3.3.2",
"@material-ui/icons": "3.0.1",
"@types/dotenv": "^6.1.0",
"@types/lodash": "^4.14.119",
"axios": "^0.18.0",
"connected-react-router": "^6.0.0",
"electron-debug": "^2.0.0",
"ethers": "^3.0.29",
"history": "^4.7.2",
"lodash": "^4.17.11",
"matrix-js-sdk": "^0.14.2",
"nodemon": "^1.18.8",
"path": "^0.12.7",
"react": "16.7.0-alpha.0 - next",
"react-dom": "16.7.0-alpha.0 - next",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-saga": "^0.16.2",
"source-map-support": "^0.5.9",
"styled-components": "^4.1.2",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"validator": "^10.9.0"
},
"devDependencies": {
"@babel/node": "^7.0.0",
"@clarketm/saga-monitor": "^1.0.6",
"@types/jest": "^23.3.10",
"@types/react": "^16.7.17",
"@types/react-test-renderer": "^16.0.3",
"awesome-typescript-loader": "^5.2.1",
"cross-env": "^1.0.8",
"electron": "3.0.11",
"electron-builder": "^20.38.3",
"electron-webpack": "^2.6.1",
"electron-webpack-ts": "^3.1.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"tape": "^4.9.1",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"webpack": "^4.27.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"bail": true,
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig-jest.json"
}
},
"testRegex": ".*\\.(test|spec)\\.(jsx?|tsx?)",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"nodemonConfig": {
"ignore": [
"*.test.ts",
"docs/*"
],
"delay": "0"
}
}