-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
126 lines (126 loc) · 3.92 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
122
123
124
125
126
{
"name": "esnextbin",
"version": "2.0.6",
"description": "Prototype JavaScript apps in the browser with ESNext features and NPM modules.",
"main": "./src/index.js",
"dependencies": {
"@babel/standalone": "^7.1.0",
"babel-standalone": "^6.26.0",
"basscss": "7.1.1",
"basscss-background-images": "^0.1.1",
"basscss-btn-outline": "^1.1.0",
"basscss-btn-sizes": "^1.2.0",
"basscss-button-transparent": "^1.1.1",
"basscss-defaults": "^2.1.3",
"basscss-utility-headings": "^0.1.0",
"brace": "^0.11.1",
"browser-module-sandbox": "^2.0.1",
"classnames": "^2.2.6",
"cookies-js": "^1.2.3",
"mousetrap": "^1.6.2",
"normalize.css": "^8.0.1",
"prettier-standalone": "^1.3.1-0",
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-ace": "^6.2.0",
"react-dom": "^16.6.1",
"react-hotkeys": "^1.1.4",
"react-progress-2": "^4.4.3",
"superagent": "^3.8.3"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.1.0",
"express": "^4.16.4",
"gh-pages": "^2.0.1",
"husky": "^1.1.4",
"mini-css-extract-plugin": "^0.4.4",
"nodemon": "^1.18.6",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"postcss-css-variables": "^0.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-preset-env": "^6.4.0",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config --progress --colors",
"watch": "webpack --config webpack.config --colors --watch",
"nodemon": "nodemon ./devServer.js",
"dev": "npm run watch & npm run nodemon",
"lint": "eslint --ext .js --ext .jsx --fix ./src",
"test": "echo \"Comming soon ;)\" && exit 0",
"predeploy": "npm run build",
"deploy": "gh-pages -d public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voronianski/esnextbin.git"
},
"keywords": [
"esnext",
"es2015",
"babel",
"jsbin",
"bin",
"requirebin",
"node-browserify",
"require",
"browser",
"npm"
],
"engines": {
"node": "^8.0.0",
"npm": "^5.5.1"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --ignore-path ./public"
}
},
"browserslist": [
"> 0.2%",
"last 2 versions",
"not ie <= 8",
"not op_mini all"
],
"author": "Dmitri Voronianski <dmitri.voronianski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/voronianski/esnextbin/issues"
},
"homepage": "https://github.com/voronianski/esnextbin#readme"
}