forked from dabbott/javascript-playgrounds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.91 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
{
"name": "react-native-web-player",
"version": "1.2.4",
"description": "Run React Native apps in your browser!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"build": "webpack --config webpack/webpack.prod.config.js --sort-assets-by --progress",
"start": "webpack-dev-server --config webpack/webpack.dev.config.js --inline --hot --colors --quiet",
"clean": "rm *-bundle.js",
"analyze": "webpack --config webpack/webpack.prod.config.js --sort-assets-by --progress --json | webpack-bundle-size-analyzer",
"gh-pages": "make"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dabbott/react-native-web-player.git"
},
"author": "[email protected]",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dabbott/react-native-web-player/issues"
},
"homepage": "https://github.com/dabbott/react-native-web-player#readme",
"dependencies": {
"babel-core": "^6.3.13",
"babel-preset-react-native": "^1.9.0",
"codemirror": "^5.20.2",
"inline-style-prefixer": "^1.0.4",
"json-loader": "^0.5.4",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-native-web": "0.0.45",
"scriptjs": "^2.5.8"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"babel-runtime": "^6.3.19",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.2.1",
"eslint-plugin-react": "^3.13.1",
"eslint-plugin-standard": "^1.3.1",
"style-loader": "^0.13.1",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"worker-loader": "^0.7.0"
}
}