This repository has been archived by the owner on Sep 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.78 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
{
"name": "pharaoh",
"description": "A desktop app for the Pharaoh live programming tool.",
"version": "0.9.9",
"author": {
"name": "Zac Anger",
"email": "[email protected]",
"url": "http://zacanger.com"
},
"contributors": [
"Pharaoh Team"
],
"license": "WTFPL",
"main": "./app.js",
"preferGlobal": true,
"bin": "./index.js",
"scripts": {
"app": "electron electron.js",
"build": "NODE_ENV=production npm run clean && webpack",
"clean": "if [ -f public/bundle.js ] ; then rm public/bundle.js ; fi",
"dev": "webpack-dev-server --hot --inline",
"release": "electron-packager . Pharaoh --platform=all --arch=all --version=1.0.0 --out=./binaries",
"start": "./index.js",
"test:lint": "eslint -c .eslintrc.json src/",
"tidy": "npm i && npm ddp && npm prune && fixpack"
},
"homepage": "https://github.com/pharaoh-js/pharaoh-desktop#readme",
"repository": {
"type": "git",
"url": "[email protected]:pharaoh-js/pharaoh-desktop.git"
},
"bugs": "https://github.com/pharaoh-js/pharaoh-desktop/issues",
"keywords": [
"codemirror",
"desktop",
"editor",
"electron",
"ide",
"instructor",
"node-webkit",
"react",
"student"
],
"dependencies": {
"babel-plugin-transform-class-properties": "6.24.1",
"electron": "1.6.7",
"electroner": "4.0.4",
"luvi": "1.3.3",
"prop-types": "15.5.10",
"react": "15.5.4",
"react-css-modules": "4.2.1",
"react-dom": "15.5.4",
"react-router": "4.1.1",
"react-router-dom": "4.1.1",
"zeelib": "0.7.49"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-preset-env": "1.4.0",
"babel-preset-react": "6.24.1",
"css-loader": "0.28.1",
"css-modules-require-hook": "4.0.6",
"electron-debug": "1.1.0",
"electron-packager": "8.7.0",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-config-standard-jsx": "4.0.1",
"eslint-config-standard-react": "5.0.0",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.0.1",
"eslint-plugin-standard": "3.0.1",
"fixpack": "2.3.1",
"postcss": "6.0.1",
"postcss-cssnext": "2.11.0",
"postcss-import": "10.0.0",
"postcss-loader": "2.0.5",
"postcss-mixins": "6.0.0",
"postcss-modules-extract-imports": "1.0.1",
"postcss-modules-local-by-default": "1.1.1",
"postcss-modules-scope": "1.0.2",
"postcss-modules-values": "1.2.2",
"style-loader": "0.17.0",
"uglify-js": "2.8.23",
"uglifyjs-webpack-plugin": "0.4.3",
"webpack": "2.5.1",
"webpack-dev-server": "2.4.5"
}
}