-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.73 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
{
"name": "electron-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:gwozniak/electron-mocha-testing.git"
},
"homepage": "[email protected]:gwozniak/electron-mocha-testing.git#README",
"scripts": {
"app": "node --inspect=2221 -r ts-node/register app.ts",
"start": "npm run webapp:build && ./node_modules/.bin/ts-node app.ts",
"webapp:build": "./node_modules/.bin/webpack --no-war --config webpack.js",
"webapp:watch": "./node_modules/.bin/webpack --no-war --progress --no-info --watch --config webpack.js",
"test": "./node_modules/.bin/electron-mocha --renderer --require-main ./test/support/electron/plugins.js --require ts-node/register --disable-gpu --interactive --recursive --extension ts --no-deprecation ./test/**/app.spec.ts --no-timeout",
"test:text": "./node_modules/.bin/electron-mocha --renderer --require-main ./test/support/electron/plugins.js --require ts-node/register --disable-gpu --recursive --extension ts --no-deprecation ./test/**/app.spec.ts --no-timeout",
"test:watch": "./node_modules/.bin/electron-mocha --renderer --require-main ./test/support/electron/plugins.js --require ts-node/register --disable-gpu --watch --recursive --extension ts --no-deprecation ./test/**/app.spec.ts --no-timeout"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.2.15",
"@types/chalk": "^2.2.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/express": "^4.17.11",
"@types/mocha": "^5.2.7",
"@types/node": "^13.13.45",
"@types/react": "^16.14.4",
"@types/react-dom": "^16.9.11",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"browser-monkey": "^2.11.0",
"chai": "^4.3.0",
"chalk": "^3.0.0",
"child_process": "^1.0.2",
"electron": "^7.3.3",
"electron-devtools-installer": "^2.2.4",
"electron-mocha": "^8.2.2",
"electron-rebuild": "^1.11.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "^4.17.1",
"helmet": "^3.23.3",
"jest": "^25.5.4",
"jsdom-global": "^3.0.2",
"mocha": "^7.2.0",
"os": "^0.1.1",
"raf": "^3.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"semantic-ui-react": "^0.88.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.9",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"eslint": "^6.8.0",
"html-replace-webpack-plugin": "^2.6.0",
"html-webpack-plugin": "^3.2.0",
"nanoid": "^2.1.11",
"path": "^0.12.7",
"promise": "^8.1.0",
"ts-loader": "^6.2.2",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-unused-expression-chai": "^0.1.4"
}
}