forked from BoostIO/BoostNote-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.62 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
112
113
114
115
116
{
"name": "boost",
"productName": "Boost",
"version": "0.1.0",
"description": "A Polished Notes App with Github Flavored Markdown",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "https://github.com/BoostIO/boost.git"
},
"scripts": {
"start": "webpack-dev-server --mode development --open",
"start-dev": "NODE_ENV=development electron app/index.js",
"compile": "NODE_ENV=production webpack --config webpack.config.js --progress",
"analyze": "NODE_ENV=production webpack --config webpack.config.js --json | webpack-bundle-size-analyzer",
"pack": "env-cmd ./.env build --dir",
"dist": "env-cmd ./.env build",
"shasum": "shasum -a 256 dist/mac/Inpad-$npm_package_version.dmg",
"lint": "tslint -p . src/**/*.ts{,x}",
"format": "prettier --write \"src/**/*\"",
"webpack": "NODE_ENV=development webpack-dev-server --config webpack.config.js",
"test": "jest -c jest.json",
"test:watch": "jest -c jest.json --watch",
"tsc": "tsc --watch --noEmit",
"rebuild": "electron-rebuild"
},
"keywords": [
"markdown",
"snippet",
"notes",
"gfm"
],
"author": "Junyoung Choi <fluke8259@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/filenamify": "^2.0.1",
"@types/history": "^4.7.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/jest": "^23.3.9",
"@types/parcel-bundler": "^1.10.1",
"@types/pouchdb-adapter-http": "^6.1.2",
"@types/pouchdb-adapter-idb": "^6.1.2",
"@types/pouchdb-adapter-memory": "^6.1.2",
"@types/pouchdb-core": "^6.4.3",
"@types/pouchdb-mapreduce": "^6.1.3",
"@types/pouchdb-replication": "^6.4.0",
"@types/prettier": "^1.15.1",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-hot-loader": "^4.1.0",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.0.3",
"@types/uuid": "^3.4.4",
"@types/webpack": "^4.4.17",
"@types/webpack-dev-server": "^3.1.1",
"@types/webpack-env": "^1.13.6",
"fork-ts-checker-webpack-plugin": "^0.4.14",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"react-hot-loader": "^4.3.12",
"ts-jest": "^23.10.4",
"ts-lint": "^4.5.1",
"ts-loader": "^5.3.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-config-standard": "^7.1.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"filenamify": "^2.1.0",
"history": "^4.7.2",
"mdast-util-to-string": "^1.0.5",
"mobx": "^5.5.2",
"mobx-react": "^5.3.6",
"path-to-regexp": "^2.4.0",
"pouchdb-adapter-http": "^7.0.0",
"pouchdb-adapter-idb": "^7.0.0",
"pouchdb-adapter-memory": "^7.0.0",
"pouchdb-core": "^7.0.0",
"pouchdb-mapreduce": "^7.0.0",
"pouchdb-replication": "^7.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-router-dom": "^4.3.1",
"remark-frontmatter": "^1.3.1",
"remark-parse": "^6.0.3",
"remark-parse-yaml": "0.0.1",
"remark-stringify": "^6.0.4",
"styled-components": "^3.4.10",
"unified": "^7.0.2",
"unist-util-visit": "^1.4.0",
"uuid": "^3.3.2"
},
"build": {
"appId": "com.electron.Boost",
"copyright": "Copyright © 2016-2017 BoostIO",
"category": "public.app-category.productivity",
"files": [
"app",
"compiled",
"resources",
"node_modules"
],
"asar": true,
"mac": {
"category": "public.app-category.productivity",
"target": "dmg",
"icon": "resources/icon.icns"
}
}
}