This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (57 loc) · 1.53 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
{
"name": "pharaoh",
"version": "0.5.3",
"description": "The front-end for a live code broadcasting app.",
"main": "index.js",
"scripts": {
"clean": "if [ -f public/bundle.js ] ; then rm public/bundle.js ; fi",
"build": " NODE_ENV=production npm run clean && webpack -p --config webpack.config.prod.js",
"start": "webpack-dev-server --config webpack.config.js --hot --inline",
"lint": "eslint -c .eslintrc src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pharaoh-js/pharaoh.git"
},
"keywords": [
"live",
"student",
"instructor",
"ide",
"editor",
"react"
],
"author": "Pharaoh Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/pharaoh-js/pharaoh/issues"
},
"homepage": "https://github.com/pharaoh-js/pharaoh#readme",
"dependencies": {
"firebase": "2.3.2",
"firepad": "1.3.0",
"history": "1.17.0",
"react": "0.14.5",
"react-dom": "0.14.5",
"react-fontawesome": "0.3.3",
"react-hot-loader": "1.3.0",
"react-inline-css": "2.0.1",
"react-router": "1.0.3"
},
"devDependencies": {
"babel-core": "6.3.26",
"babel-eslint": "5.0.0-beta6",
"babel-loader": "6.2.1",
"babel-preset-es2017": "1.3.1",
"babel-preset-react": "6.3.13",
"css-loader": "0.23.1",
"eslint": "6.6.0",
"eslint-plugin-babel": "3.0.0",
"eslint-plugin-react": "3.14.0",
"less": "2.5.3",
"less-loader": "2.2.2",
"style-loader": "0.13.0",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
}
}