-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
94 lines (94 loc) · 2.99 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
{
"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": {
"archive": "node scripts/archive.js",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "webpack --config webpack.config.dev.js",
"dev": "cross-env NODE_ENV=development electron . --debug",
"format:js": "prettier --write '{*.json,{resources,app,__test__,__mocks__,utils,scripts}/**/*.js{,x}}'",
"format:md": "prettier --parser markdown --write '*.md'",
"format": "npm run format:js && npm run format:md",
"lint": "eslint app scripts utils __mocks__ __tests__",
"package": "cross-env NODE_ENV=production node scripts/package.js",
"package:debian": "cross-env NODE_ENV=production node scripts/installerDebian.js",
"release": "npm run build:prod && npm run package && npm run archive",
"start": "npm run build && npm run dev",
"test:watch": "jest --watch",
"test": "jest --coverage --verbose"
},
"author": "Vu Tran <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/DextApp/dext"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/preset-es2017": "^7.0.0-beta.44",
"@babel/preset-react": "^7.0.0-beta.44",
"@babel/preset-stage-3": "^7.0.0-beta.44",
"babel-core": "^7.0.0-0",
"babel-eslint": "^7.1.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"chalk": "^1.1.3",
"conf": "^1.4.0",
"coveralls": "^2.11.12",
"cross-env": "^3.1.3",
"electron-installer-debian": "^0.8.1",
"electron-packager": "^12.0.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jest": "21.15.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"jest": "^21.3.0-beta.15",
"json-loader": "^0.5.4",
"prettier": "^1.11.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"browser-bookmarks": "^0.3.0",
"deep-assign": "^2.0.0",
"dext-core-utils": "^0.5.1",
"electron": "^1.8.4",
"escope": "^3.6.0",
"glamor": "^2.17.14",
"is_js": "^0.9.0",
"markdown-it": "^8.0.1",
"mathjs": "^3.6.0",
"npm": "^5.8.0",
"plist": "^2.0.1",
"prop-types": "^15.6.1",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-test-renderer": "16.3.2",
"screen-saver": "^0.2.1",
"string_score": "^0.1.22"
},
"engines": {
"node": ">= 8.2.1"
}
}