This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.3 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
{
"name": "noahs-ark",
"version": "1.0.0",
"description": "Help Noah find pairs of animals for the ark.",
"main": "./public/electron/bundle.js",
"author": "Gerasin Ivan <webartmotor@gmail.com>",
"homepage": "https://www.mysite.com",
"license": "MIT",
"private": false,
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"test": "jest",
"commit": "git-cz",
"start:el": "webpack --mode production && electron .",
"build:el": "webpack --mode production && electron-builder"
},
"jest": {
"verbose": false
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./commitizen.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './commitlint.js'"
}
},
"build": {
"appId": "com.electron.noahsark",
"productName": "Noah's ark",
"linux": {
"desktop": "Noah's ark",
"category": "Game",
"icon": "icons/icon-512.png",
"target": [
"AppImage",
"snap",
"deb"
]
}
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-stage-2": "^7.0.0",
"@commitlint/cli": "^8.1.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.0.3",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.1.0",
"cz-customizable": "^6.2.0",
"electron": "^6.0.9",
"electron-builder": "^21.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"file-loader": "^4.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.5",
"jest": "^24.8.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"terser-webpack-plugin": "^1.3.0",
"url-loader": "^2.1.0",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}