-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 1.88 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": "pulse",
"productName": "Pulse",
"version": "1.2.0",
"description": "A Platzi Flavored Markdown editor",
"main": "main/index.js",
"repository": "PlatziDev/pulse",
"author": "Platzi Team <[email protected]>",
"license": "MIT",
"scripts": {
"start": "electron main",
"build": "next build renderer && next export -o build renderer",
"clean": "rm -rf ./dist",
"prepack": "npm run clean",
"predist": "npm run clean",
"pack": "npm run build && build --dir",
"dist": "npm run build && build",
"lint": "standard 'main/*.js' 'renderer/**/*.js'",
"precommit": "lint-staged"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**",
"**/.next/**"
]
},
"lint-staged": {
"*.js": "standard"
},
"build": {
"appId": "co.platzi.pulse",
"mac": {
"category": "",
"icon": "main/assets/icon"
},
"win": {
"target": "nsis",
"icon": "main/assets/icon"
},
"nsis": {
"perMachine": true
},
"protocols": [
{
"name": "Platzi Flavored Markdown",
"role": "Editor",
"schemes": [
"pulse"
]
}
],
"fileAssociations": [
{
"ext": "md",
"description": "Platzi Flavored Markdown",
"role": "Editor"
}
],
"files": [
"main",
"node_modules",
"build"
]
},
"dependencies": {
"app-root-path": "^2.0.1",
"electron-is-dev": "^0.1.2",
"highlight.js": "^9.11.0",
"next": "^3.0.0-beta5",
"prop-types": "^15.5.10",
"pulse-editor": "^1.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-icons": "^2.2.5"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babili-webpack-plugin": "^0.0.11",
"electron": "^1.6.8",
"electron-builder": "^17.8.0",
"lint-staged": "^3.4.2",
"standard": "^10.0.2"
}
}