-
Notifications
You must be signed in to change notification settings - Fork 263
/
package.json
98 lines (98 loc) · 2.92 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
{
"name": "franchise",
"version": "1.1.0",
"description": "a sql notebook",
"private": true,
"scripts": {
"build": "nwb build-react-app src/index.js bundle --no-vendor",
"clean": "nwb clean-app",
"start": "nwb serve-react-app",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"deploy": "gh-pages -d bundle",
"pack": "electron-builder --dir",
"dist": "yarn build && electron-builder",
"build:electron:linux": "yarn build && electron-builder build --linux",
"build:electron:mac": "yarn build && electron-builder build --mac",
"build:electron:windows": "yarn build && electron-builder build --windows"
},
"dependencies": {
"@blueprintjs/core": "^1.22.0",
"@blueprintjs/labs": "~0.5.0",
"@blueprintjs/table": "^1.19.0",
"@skidding/react-codemirror": "^1.0.2",
"breadloaf": "^1.3.9",
"chart.js": "^2.8.0",
"classnames": "^2.2.6",
"codemirror": "^5.48.0",
"codemirror-graphql": "^0.6.11",
"css-loader": "^3.0.0",
"d3-shape": "^1.2.0",
"electron-notarize": "^0.1.1",
"font-awesome": "^4.7.0",
"franchise-client": "^0.2.7",
"graphql": "^14.3.1",
"graphql-request": "^1.4.0",
"leaflet": "^1.4.0",
"lodash": "^4.17.13",
"normalize.css": "^5.0.0",
"rc-tabs": "^7.1.1",
"react": "^16.8.6",
"react-collapse": "^4.0.2",
"react-dom": "^16.8.6",
"react-error-boundary": "^1.2.5",
"react-json-view": "^1.19.1",
"react-leaflet": "^2.4.0",
"react-motion": "^0.5.0",
"sql.js": "^0.4.0",
"sqlgenerate": "https://github.com/jdrew1303/sqlgenerate",
"sqlite-parser": "^1.0.1",
"sweetalert2": "^8.13.0",
"tmp": "^0.0.33",
"tsparser": "^1.0.2",
"whatwg-fetch": "^3.0.0",
"ws": "^7.0.1",
"xlsx": "^0.14.3"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-preset-env": "^1.6.0",
"electron": "^4.0.5",
"electron-builder": "^21.1.1",
"file-loader": "^0.11.2",
"gh-pages": "^1.0.0",
"husky": "^2.5.0",
"lint-staged": "^8.2.1",
"nwb": "^0.18.10",
"nwb-less": "^0.5.1",
"prettier": "^1.18.2",
"raw-loader": "^0.5.1",
"stats-webpack-plugin": "^0.6.1",
"uglify-loader": "^2.0.0",
"url-loader": "^0.5.9",
"worker-loader": "^0.8.1"
},
"build": {
"appId": "com.eponymous.franchise",
"productName": "Franchise",
"copyright": "Copyright © Eponymous Labs, Inc. 2017-2019",
"afterSign": "./build/notarize.js",
"mac": {
"category": "public.app-category.developer-tools",
"hardenedRuntime": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,json,css,less}": ["prettier --write", "git add"],
".{prettierrc,babelrc}": ["prettier --write", "git add"]
},
"author": "Eponymous Labs, Inc.",
"repository": "git@github.com:HVF/franchise.git",
"main": "electron.js"
}