-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
121 lines (121 loc) · 3.87 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
117
118
119
120
121
{
"name": "61a-editor",
"productName": "61A Editor",
"sideEffects": [
"*.css"
],
"author": {
"name": "Rahul Arya",
"email": "[email protected]"
},
"version": "1.0.0",
"license": "MIT",
"scripts": {
"scheme-import": "python3 create-web.py | tee src/web-server/IGNORE_scheme_debug.py > src/languages/scheme/web/IGNORE_needed.py",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"web-dev": "webpack-dev-server --hot --open --config webpack.web.config.js --mode development",
"web-scheme-compile": "webpack-dev-server --open --config webpack.web.config.js --mode development --env.SCHEME_COMPILE",
"web-dist": "webpack --config webpack.web.config.js --mode production",
"web-deploy": "cd dist/web/ && rm -rf .git && git init && git add -A && git commit -m \"init\" && git remote add dokku [email protected]:code && git push --force dokku master",
"web-test": "python dist/web/app.py",
"size-profile": "webpack --config webpack.size.config.js --mode production"
},
"dependencies": {
"firebase": "^8.2.1",
"source-map-support": "^0.5.10"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-free": "^5.9.0",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@material-ui/core": "^4.8.3",
"@material-ui/lab": "^4.0.0-alpha.39",
"@material-ui/styles": "^4.8.2",
"ace-builds": "^1.4.8",
"babel-loader": "^8.0.6",
"brython": "^3.7.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-hot-loader": "^1.4.4",
"css-loader": "^2.1.1",
"electron": "4.0.1",
"electron-builder": "20.38.4",
"electron-webpack": "^2.6.2",
"electron-webpack-eslint": "^4.0.2",
"electron-webpack-ts": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"exports-loader": "^0.7.0",
"expose-loader": "^0.7.5",
"firepad": "^1.5.9",
"fix-path": "^2.1.0",
"golden-layout": "^1.5.9",
"highlight.js": "^9.15.8",
"highlightjs": "^9.12.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.13",
"idb": "^4.0.3",
"imports-loader": "^0.8.0",
"jquery": "^3.4.1",
"monaco-editor": "^0.20.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"mousetrap": "^1.6.3",
"mousetrap-global-bind": "^1.1.0",
"path-browserify": "^1.0.0",
"path-parse": "^1.0.6",
"raw-loader": "^3.0.0",
"react": "^16.8.6",
"react-ace": "^8.1.0",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.11.1",
"react-monaco-editor": "^0.26.2",
"script-loader": "^0.7.2",
"semantic-release": "^15.13.17",
"svg-pan-zoom": "^3.6.0",
"svg.js": "^2.7.1",
"temp": "^0.9.0",
"typescript": "^3.5.1",
"url-loader": "^2.0.0",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^3.7.1",
"workbox-webpack-plugin": "^4.3.1"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.config.js"
}
},
"build": {
"fileAssociations": [
{
"ext": ".py",
"name": "Python File",
"role": "Editor"
},
{
"ext": ".scm",
"name": "61A Scheme File",
"role": "Editor"
},
{
"ext": ".sql",
"name": "SQL File",
"role": "Editor"
}
]
}
}