forked from ZeroX-DG/SnippetStore
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.22 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 4.22 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "snippetstore",
"version": "0.2.10",
"description": "A snippet management app for developers",
"main": "index.js",
"scripts": {
"start": "electron ./index.js",
"fix": "eslint . --fix",
"lint": "eslint .",
"build": "node scripts/build.js",
"dist:linux": "npm run build && rimraf dist/ && electron-builder --linux",
"dist:win": "npm run build && rimraf dist/ && electron-builder --win",
"dist:mac": "npm run build && rimraf dist/ && electron-builder --mac",
"dist:win:linux": "npm run build && rimraf dist/ && electron-builder --win --linux",
"dist:all": "npm run build && rimraf dist/ && electron-builder --win --linux --mac",
"dev": "node scripts/dev.js",
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest"
},
"jest": {
"testURL": "http://localhost"
},
"build": {
"appId": "com.zerox-dg.snippetstore",
"productName": "Snippet Store",
"asar": true,
"directories": {
"output": "dist"
},
"files": [
"index.js",
"package.json",
"compiled/**/*",
"app/**/*",
"node_modules/**/*",
"resources/**/*",
"languages/**/*"
],
"extraResources": [
"LICENSE",
"THIRD-PARTY-LICENSES.txt"
],
"dmg": {
"contents": [
{
"x": 438,
"y": 275,
"type": "link",
"path": "/Applications"
},
{
"x": 192,
"y": 275,
"type": "file"
}
]
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "resources/icon/icon512.png"
},
"linux": {
"category": "Development",
"icon": "resources/icon",
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "nsis",
"icon": "resources/icon/icon512.ico"
}
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.7",
"@fortawesome/fontawesome-free-solid": "^5.0.12",
"@fortawesome/react-fontawesome": "0.0.19",
"codemirror": "^5.38.0",
"dateformat": "^3.0.3",
"electron-store": "^1.3.0",
"i18n-2": "^0.7.2",
"lodash": "^4.17.10",
"marked": "^0.6.0",
"messenger": "0.0.9",
"mobx": "^4.2.0",
"mobx-react": "^5.1.2",
"mousetrap": "^1.6.2",
"mousetrap-global-bind": "^1.1.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-toastify": "^4.0.2",
"react-tooltip": "^3.6.0",
"react-transition-group": "^2.3.1",
"sander": "^0.6.0",
"universal-analytics": "^0.4.20"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-binding": "^0.1.2",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.26.0",
"chalk": "^2.4.1",
"concurrently": "^3.5.1",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"del": "^3.0.0",
"electron": "^1.8.8",
"electron-builder": "^20.19.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^1.1.11",
"jest": "^22.4.3",
"node-sass": "^4.9.2",
"prettier-eslint": "^8.8.2",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"sass-resources-loader": "^1.3.3",
"signale": "^1.3.0",
"style-loader": "^0.21.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.14"
},
"keywords": [
"react",
"snippet",
"sass",
"electron",
"store"
],
"repository": {
"type": "git",
"url": "https://github.com/ZeroX-DG/SnippetStore.git"
},
"author": "Hung Nguyen <viethungax@gmail.com> (https://github.com/ZeroX-DG)",
"license": "GPL-3.0"
}