This repository was archived by the owner on Feb 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "js-playground",
"version": "0.0.1",
"description": "JavaScript REPL with support for Babel",
"main": "''",
"scripts": {
"build": "webpack -p --config webpack.production.config.js --progress --profile --colors",
"start": "webpack-dev-server --progress --profile --colors",
"gh-pages": "node ./scripts/gh-pages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cmmartin/react-repl"
},
"keywords": [
"React",
"Webpack",
"Babel",
"REPL",
"editor"
],
"author": "Charlie Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/cmmartin/react-repl/issues"
},
"homepage": "https://github.com/alicoding/react-repl#readme",
"dependencies": {
"babel-core": "6.13.2",
"babel-loader": "6.2.4",
"babel-preset-common": "github:oztune/babel-preset-common",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "0.23.1",
"file-loader": "0.9.0",
"google-map-react": "^0.17.0",
"json-loader": "^0.5.4",
"json5-loader": "^0.6.0",
"jsx-loader": "^0.13.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"node-libs-browser": "1.0.0",
"raw-loader": "^0.5.1",
"react": "15.3.0",
"react-addons-update": "^15.3.0",
"react-codemirror": "^0.2.6",
"react-dimensions": "^1.3.0",
"react-dom": "15.3.0",
"react-toolbox": "^1.1.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.1"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.2.0",
"eslint-plugin-react": "^6.0.0",
"gh-pages": "^0.11.0",
"node-sass": "^3.8.0",
"react-hot-loader": "1.3.0",
"sass-loader": "^4.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "1.14.1"
}
}