-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.62 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
{
"name": "hammermonkey",
"productName": "Hammermonkey",
"version": "0.2.0",
"description": "A web debugger based on TestCafe Hammerhead",
"main": "src/index.entry.js",
"scripts": {
"start": "npm run watch & electron -r @babel/register .",
"clean": "rimraf out && rimraf dist",
"compile-js": "babel src --out-dir out",
"compile-css": "node-sass src --output out --recursive",
"compile-res": "cpy '**/*' '!**/*.js' '!**/*.scss' '../out/' --cwd=src --parents",
"compile": "npm run compile-js && npm run compile-css && npm run compile-res",
"watch-css": "npm run compile-css; node-sass src --output out --recursive --watch",
"watch": "npm run watch-css",
"pack": "npm run clean; npm run compile; electron-builder --dir",
"dist": "npm run clean; npm run compile; electron-builder",
"release": "npm run dist; ./script/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonpai/hammermonkey.git"
},
"author": "simonpai",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonpai/hammermonkey/issues"
},
"homepage": "https://github.com/simonpai/hammermonkey#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"ajv": "^6.5.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cpy-cli": "^2.0.0",
"electron": "^3.0.13",
"electron-builder": "^20.28.4",
"eslint": "^5.15.1",
"eslint-plugin-react": "^7.12.4",
"node-sass": "^4.9.4",
"rimraf": "^2.6.2"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"@material-ui/core": "^3.3.2",
"@mdi/js": "^3.0.39",
"@mdi/react": "^1.1.0",
"body-parser": "^1.18.3",
"core-decorators": "^0.20.0",
"express": "^4.16.3",
"fast-deep-equal": "^2.0.1",
"history": "^4.7.2",
"internal-ip": "^4.2.0",
"mdi-material-ui": "^5.6.0",
"mustache": "^3.0.0",
"nanoid": "^2.0.0",
"nedb": "^1.8.0",
"opn": "^5.4.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-hotkeys": "^1.1.4",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"recompose": "^0.30.0",
"redux": "^4.0.0",
"redux-electron-ipc": "^1.1.13",
"semantic-ui-react": "^0.83.0",
"sequency": "^0.19.2",
"testcafe-hammerhead": "^14.5.0",
"uuid": "^3.3.2"
}
}