-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
executable file
·113 lines (113 loc) · 3.76 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "cerebral-debugger",
"version": "3.1.0",
"description": "Cerebral Debugger",
"private": true,
"main": "electron/main.js",
"scripts": {
"start": "concurrently -k \"cross-env NODE_ENV=development node electron/devServer.js\" \"cross-env NODE_ENV=development npm run electron\"",
"electron": "electron .",
"build": "cross-env NODE_ENV=production webpack && npm run prepare:electron",
"prepare:electron": "rimraf electron/dist electron/node_modules && node scripts/createElectronSymlink",
"package:win": "cross-env NODE_ENV=production DEBUG=electron-builder:7z,electron-builder build -w",
"package:mac": "cross-env NODE_ENV=production DEBUG=electron-builder:7z,electron-builder build -m",
"package:linux": "cross-env NODE_ENV=production DEBUG=electron-builder:7z,electron-builder build -l",
"lint": "eslint \"**/*.js\"",
"test": "npm run lint",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{md,css,json}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/cerebral-debugger.git"
},
"bugs": {
"url": "https://github.com/cerebral/cerebral-debugger/issues"
},
"homepage": "http://cerebraljs.com/docs/introduction/debugger.html",
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"build": {
"productName": "Cerebral Debugger",
"appId": "cerebral.debugger",
"win": {
"target": [
"nsis",
"7z"
]
},
"linux": {
"packageCategory": "devel",
"target": [
"AppImage",
"snap",
"deb",
"rpm",
"tar.gz"
],
"category": "Development"
},
"mac": {
"category": "public.app-category.developer-tools"
}
},
"dependencies": {
"@cerebral/inferno": "^3.2.1",
"@cerebral/useragent": "^3.2.1",
"cerebral": "^4.2.1",
"classnames": "^2.2.5",
"color": "^3.0.0",
"color-hash": "^1.0.3",
"electron-default-menu": "^1.0.1",
"electron-json-storage": "^4.0.2",
"electron-log": "^2.2.14",
"electron-updater": "^2.21.4",
"function-tree": "3.2.1",
"inferno": "^5.0.1",
"inferno-create-element": "^5.0.4",
"prismjs": "^1.13.0",
"traverse": "^0.6.6",
"ws": "^5.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-inferno": "^5.0.1",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"electron": "^1.8.4",
"electron-builder": "20.8.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"lint-staged": "^9.4.1",
"prettier": "1.11.1",
"rimraf": "^2.6.2",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"webpack-hot-middleware": "^2.21.2"
}
}