forked from DextApp/dext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.37 KB
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
{
"name": "dext",
"version": "0.9.0",
"description": "A smart launcher for Mac. Powered by JavaScript.",
"keywords": [
"dext",
"launcher",
"alfred",
"alfy",
"spotlight",
"search"
],
"main": "app/main/index.js",
"scripts": {
"lint": "eslint app scripts utils __mocks__ __tests__",
"build": "webpack --config webpack.config.dev.js",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"package": "cross-env NODE_ENV=production node scripts/package.js",
"installer:deb": "cross-env NODE_ENV=production node scripts/installerDebian.js",
"archive": "node scripts/archive.js",
"release": "npm run build:prod && npm run package && npm run archive",
"dev": "cross-env NODE_ENV=development electron . --debug",
"start": "npm run build && npm run dev",
"test": "jest --coverage --verbose"
},
"author": "Vu Tran <vu@vu-tran.com>",
"repository": {
"type": "git",
"url": "https://github.com/vutran/dext"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chalk": "^1.1.3",
"coveralls": "^2.11.12",
"cross-env": "^3.1.3",
"electron": "^1.4.3",
"electron-installer-debian": "^0.4.0",
"electron-packager": "^8.2.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"jest": "^18.0.0",
"json-loader": "^0.5.4",
"react-test-renderer": "^15.3.1",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"webpack": "^2.2.1"
},
"dependencies": {
"browser-bookmarks": "^0.3.0",
"conf": "^0.12.0",
"deep-assign": "^2.0.0",
"dext-core-utils": "^0.5.1",
"electron": "^1.6.11",
"glamor": "^2.17.14",
"is_js": "^0.9.0",
"markdown-it": "^8.0.1",
"mathjs": "^3.6.0",
"plist": "^2.0.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^5.0.2",
"redux": "^3.5.2",
"redux-saga": "^0.14.3",
"screen-saver": "^0.2.1",
"string_score": "^0.1.22"
}
}