-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "snskrt-desktop-dict",
"productName": "SNSKRT DICT",
"description": "Desktop Sanskrit-English Dictionary",
"author": {
"name": "Dan Kocherga",
"email": "dan.kocherga@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:snskrt/desktop-dict.git"
},
"version": "1.3.0",
"main": "bootstrap.js",
"license": "(CC-BY-NC-SA-3.0 OR MIT)",
"scripts": {
"start": "electron .",
"build-assets": "webpack --config webpack.config.js --progress --colors",
"pack": "build --dir",
"dist": "build --arch all",
"test": "jest",
"mw-db": "util/mw_db/fill_db.sh",
"apte-db": "util/apte_db/fill_db.sh",
"postinstall": "install-app-deps"
},
"devDependencies": {
"babel-jest": "^18.0.0",
"chai": "^3.5.0",
"electron": "^1.7.9",
"electron-builder": "next",
"fbjs": "^0.8.8",
"html-webpack-plugin": "^2.7.2",
"jest": "^18.0.0",
"json-loader": "^0.5.7",
"object-assign": "^4.1.0",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.4.1",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^1.12.9",
"xml-parse-from-string": "^1.0.0"
},
"dependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"electron-google-analytics": "0.0.17",
"electron-log": "^2.0.2",
"electron-updater": "^2.16.1",
"material-ui": "^0.17.1",
"react": "^15.5.3",
"react-dom": "^15.5.3",
"react-tap-event-plugin": "^2.0.0",
"sanscript.js": "git+https://github.com/snskrt/sanscript.js.git",
"sql.js": "0.3.2"
},
"build": {
"appId": "com.snskrt.dict",
"mac": {
"category": "public.app-category.education"
},
"dmg": {
"title": "${productName}",
"artifactName": "snskrt.${ext}"
},
"nsis": {
"artifactName": "snskrt.${ext}"
}
},
"postinstall": "install-app-deps"
}