-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
88 lines (88 loc) Β· 2.24 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
{
"name": "exam-simulator",
"version": "1.0.0-alpha.2",
"description": "A JSON based, open source, exam simulator built with electron.",
"main": "dist/main/main.js",
"keywords": [
"exam",
"simulator"
],
"author": {
"name": "benjaminadk",
"email": "[email protected]",
"url": "https://github.com/exam-simulator"
},
"repository": {
"type": "git",
"url": "https://github.com/exam-simulator/simulator.git"
},
"homepage": "https://github.com/exam-simulator/simulator",
"license": "ISC",
"scripts": {
"test": "mocha",
"dev": "electron-webpack dev",
"prod": "electron ./dist/main/main.js",
"compile": "electron-webpack",
"release": "electron-builder -p always"
},
"dependencies": {
"ajv": "^6.10.0",
"axios": "^0.18.0",
"date-fns": "^2.0.0-alpha.27",
"electron-devtools-installer": "^2.2.4",
"electron-updater": "^4.0.6",
"immutability-helper": "^3.0.0",
"lodash.isequal": "^4.5.0",
"polished": "^3.0.3",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dnd": "^7.1.0",
"react-dnd-html5-backend": "^7.1.0",
"react-dom": "^16.8.3",
"source-map-support": "^0.5.10",
"styled-components": "^4.1.3",
"styled-icons": "^7.4.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-plugin-styled-components": "^1.10.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^4.0.6",
"electron-builder": "^20.38.5",
"electron-webpack": "^2.6.2",
"mocha": "^6.0.2",
"spectron": "^5.0.0",
"webpack": "^4.29.6"
},
"build": {
"appId": "Benjaminadk.ExamSimulator",
"productName": "Exam Simulator",
"copyright": "Copyright Β© 2019 Benjaminadk",
"win": {
"icon": "static/icon.ico",
"publish": {
"provider": "github",
"owner": "exam-simulator"
},
"target": [
"nsis"
]
},
"mac": {
"category": "public.app-category.education",
"icon": "static/icon.icns",
"publish": {
"provider": "github",
"owner": "exam-simulator"
},
"target": [
"dmg"
]
},
"directories": {
"output": "release"
}
}
}