-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "PolyWrite",
"version": "0.0.1",
"description": "Version control made easy",
"main": "main.js",
"scripts": {
"start": "electron -r babel-register .",
"nstart": "electron .",
"sass-start": "node-sass app/styles/main.scss app/styles/build/styles.css && electron -r babel-register .",
"rebuild-sass": "node-sass app/styles/main.scss app/styles/build/styles.css",
"eslint": "eslint .",
"dist-test": "build -m --x64 --dir",
"dist-mac": "build -m --x64",
"dist-all": "build -mwl --x64",
"postinstall": "electron-builder install-app-deps"
},
"repository": "https://github.com/EthanBogart/PolyWrite",
"author": "GitHub",
"license": "CC0-1.0",
"build": {
"appId": "com.polywrite.desktop",
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS"
},
"files": [
"./app/styles/build/styles.css",
"./main.js",
"./app/start.js",
"./app/js/App.js",
"./app/js/containers/*",
"./app/js/components/*",
"./app/js/components/views/*",
"./index.html",
"./.babelrc"
],
"directories": {
"buildResources": "./app",
"output": "dist"
}
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"electron-builder": "^19.16.2",
"electron-devtools-installer": "^2.2.0",
"electron-react-devtools": "^0.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"node-sass": "^4.5.3"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"classnames": "^2.2.5",
"electron": "^1.7.5",
"fs": "^0.0.1-security",
"immutable": "git+https://github.com/facebook/immutable-js.git#fecc9fc",
"jsonfile": "^3.0.1",
"keymirror": "^0.1.1",
"mime-types": "^2.1.16",
"prop-types": "^15.5.10",
"quill": "^1.3.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-redux-classconnect": "^1.0.2",
"react-router": "^4.1.2",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0"
}
}