-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.42 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
{
"name": "electron-calendar",
"productName": "Electron Calendar",
"description": "tui-calendar for electron",
"version": "1.0.0",
"private": true,
"author": "SimHub <simhub.dev@gmail.com>",
"copyright": "simon lackmann",
"contributors": [
"louisefindlay23 <louise@louisefindlay.com> (https://louisefindlay.com)"
],
"homepage": "http://simhub.github.io/portfolio/",
"main": "app/background.js",
"build": {
"appId": "com.example.electron-boilerplate",
"files": ["app/**/*", "node_modules/**/*", "package.json"],
"directories": {
"buildResources": "resources"
},
"publish": null
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"preunit": "webpack --config=build/webpack.unit.config.js --env=test --display=none",
"unit": "electron-mocha temp/specs.js --renderer --require source-map-support/register",
"pree2e": "webpack --config=build/webpack.app.config.js --env=test --display=none && webpack --config=build/webpack.e2e.config.js --env=test --display=none",
"e2e": "mocha temp/e2e.js --require source-map-support/register",
"test": "npm run unit && npm run e2e",
"start": "node build/start.js",
"release": "webpack --config=build/webpack.app.config.js --env=production && electron-builder",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"bootstrap": "^4.6.0",
"chance": "^1.1.8",
"electron-json-storage": "^4.5.0",
"fs-jetpack": "^2.4.0",
"jquery": "^3.6.0",
"moment": "^2.29.1",
"popper.js": "^1.16.1",
<<<<<<< HEAD
"tui-calendar": "^1.13.1",
"snyk": "^1.685.0",
=======
<<<<<<< HEAD
"tui-calendar": "^1.14.0",
"snyk": "^1.683.0",
=======
"tui-calendar": "^1.13.1",
"snyk": "^1.685.0",
>>>>>>> master
>>>>>>> master
"tui-code-snippet": "^2.3.3",
"tui-dom": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.0-beta.4",
"chai": "^4.1.0",
"css-loader": "^3.1.0",
"electron": "^13.1.2",
"electron-builder": "^21.1.5",
"electron-mocha": "^8.1.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"mocha": "^6.2.0",
"source-map-support": "^0.5.6",
"spectron": "^15.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.1.3",
"webpack-node-externals": "^1.7.2"
},
"snyk": true
}