-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.63 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
{
"name": "@cryptoscamdb/desktop",
"version": "0.1.0",
"description": "A GUI for the CryptoScamDB project",
"main": "dist/main.js",
"scripts": {
"tscheck": "tsc --noEmit --project tsconfig.json",
"tslint": "tslint --project .",
"clean": "rimraf ./dist && rimraf ./electron",
"build": "yarn run clean && per-env",
"build:development": "webpack --config ./webpack/development.ts",
"build:production": "webpack --config ./webpack/production.ts",
"start": "yarn run build && concurrently \"yarn run start:main\" \"yarn run start:renderer\"",
"start:main": "webpack-dev-server --hot --config ./webpack/development.ts",
"start:renderer": "electron ./dist/main.js",
"prettier:diff": "prettier --write --config ./.prettierrc --list-different 'src/**/*.ts' 'src/**/*.tsx'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CryptoScamDB/desktop.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CryptoScamDB/desktop/issues"
},
"homepage": "https://github.com/CryptoScamDB/desktop#readme",
"dependencies": {
"@octokit/rest": "^15.13.0",
"@reach/router": "^1.2.1",
"apollo-cache-inmemory": "^1.3.5",
"apollo-client": "^2.4.2",
"apollo-link-http": "^1.5.5",
"concurrently": "^4.0.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"per-env": "^1.0.2",
"react": "^16.5.2",
"react-apollo": "^2.2.4",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-react": "^7.0.0",
"@types/graphql": "^14.0.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/mini-css-extract-plugin": "^0.2.0",
"@types/node": "^10.11.5",
"@types/reach__router": "^1.0.1",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.9",
"@types/webpack-merge": "^4.1.3",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^1.0.0",
"electron": "^3.0.3",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"prettier": "^1.14.3",
"resolve-url-loader": "^3.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"tslint-microsoft-contrib": "^5.2.1",
"tslint-react": "^3.6.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
}
}