-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "stickies",
"version": "1.0.0",
"description": "Stickies application for Ubuntu",
"main": "./electron-starter.js",
"scripts": {
"start": "concurrently \"npm run start:app\" \"npm run start:electron\"",
"start:app": "webpack-dev-server -d",
"start:electron": "wait-on http://localhost:8080 && NODE_ENV=development electron .",
"build": "npm run build:app && npm run build:electron && npm run build:deb64",
"build:app": "webpack -p",
"build:electron": "electron-packager . stickies --platform linux --arch x64 --out build/",
"build:deb64": "electron-installer-debian --src build/stickies-linux-x64/ --dest build/installers/ --arch amd64",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"validate": "npm run lint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run validate",
"post-merge": "npm install"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/narekkeryan/stickies.git"
},
"keywords": [
"Stickies",
"Sticky Notes",
"Notes",
"Electron",
"Ubuntu"
],
"author": "Narek Keryan <[email protected]> (https://nkgdev.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/narekkeryan/stickies/issues"
},
"homepage": "https://github.com/narekkeryan/stickies#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"electron": "^8.2.5",
"electron-installer-debian": "^3.0.0",
"electron-packager": "^14.2.1",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"wait-on": "^5.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}