-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 4.02 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "nimbl",
"version": "0.8.4",
"author": "ZaninAndrea",
"homepage": "./",
"license": "MIT",
"description": "Solarized markdown notes",
"main": "public/electron.js",
"repository": "https://github.com/ZaninAndrea/mdeditor",
"build": {
"appId": "com.nimbl",
"files": ["build/**/*", "node_modules/**/*"],
"main": "build/electron.js",
"directories": {
"buildResources": "assets",
"output": "dist"
},
"win": {
"icon": "build/icon.ico",
"target": ["appx"]
},
"target": "appx",
"appx": {
"backgroundColor": "#073642",
"displayName": "Nimbl",
"identityName": "48363AndreaZanin.NimblNotes",
"publisher": "CN=CCFAD946-9153-4EE0-B202-640EA1BB9886",
"publisherDisplayName": "Andrea Zanin"
},
"productName": "Nimbl"
},
"dependencies": {
"antd": "^2.12.6",
"brace": "^0.10.0",
"cheerio": "^1.0.0-rc.2",
"electron-is-dev": "^0.3.0",
"electron-store": "^1.2.0",
"electron-updater": "^2.18.2",
"handlebars": "^4.0.10",
"highlight.js": "^9.12.0",
"html-pdf": "^2.2.0",
"husky": "^0.14.3",
"is-absolute-url": "^2.1.0",
"jquery": "^3.2.1",
"jquery.scrollto": "^2.1.2",
"js-yaml": "^3.10.0",
"katex": "^0.8.2",
"linkify-it": "^2.0.3",
"lint-staged": "^4.2.3",
"markdown-it": "^8.3.1",
"markdown-it-block-image": "0.0.3",
"markdown-it-container": "^2.0.0",
"markdown-it-ins": "^2.0.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-smartarrows": "^1.0.1",
"markdown-it-table-of-contents": "^0.3.2",
"markdown-it-task-checkbox": "^1.0.4",
"markdown-toc": "^1.1.0",
"mathjs": "^3.16.3",
"mime": "^1.3.6",
"mousetrap": "^1.6.1",
"node-sass-chokidar": "0.0.3",
"react": "^15.6.1",
"react-ace": "^5.1.0",
"react-ace-wrapper": "^1.0.1",
"react-addons-perf": "^15.4.2",
"react-desktop": "^0.3.3",
"react-dom": "^15.6.1",
"react-draggable-tabs": "^1.0.7",
"react-dropzone": "^4.1.0",
"react-fluid-buttons": "^1.0.3",
"react-panelgroup": "^1.0.2",
"react-scripts": "^1.0.10",
"request": "^2.81.0",
"source-code-pro": "git://github.com/adobe-fonts/source-code-pro.git#release",
"uslug": "^1.0.4"
},
"lint-staged": {
"{{public,src}/**/*.{scss,js,json},package.json}": [
"prettier --write \"{{public,src}/**/*.{scss,js,json},package.json}\"",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"build-css": "node-sass-chokidar src/stylesheets/scss/ -o src/stylesheets/css/",
"watch-css":
"npm run build-css && node-sass-chokidar src/stylesheets/scss/ -o src/stylesheets/css/ --watch --recursive",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dev":
"concurrently \"yarn watch-css\" \"SET BROWSER=none&& yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"appx": "build --em.main=build/electron.js --win --ia32 -c electron-builder.yml",
"preappx": "yarn build-css && yarn build",
"ship": "build --em.main=build/electron.js --win --ia32 -p always -c electron-builder.yml",
"preship": "yarn build-css && yarn build",
"pretty": "prettier --write \"{{public,src}/**/*.{scss,js,json},package.json}\"",
"sign":
"SignTool sign -fd SHA256 -a -f .\\codeSigning\\key.pfx .\\dist\\Nimbl-0.8.4-ia32.appx"
},
"devDependencies": {
"concurrently": "^3.5.0",
"electron": "^1.7.5",
"electron-builder": "19.52.1",
"electron-devtools-installer": "^2.2.0",
"prettier": "^1.7.4",
"wait-on": "^2.0.2"
}
}