2017-07-03 08:45:32 +05:30
|
|
|
{
|
|
|
|
"name": "web-maker",
|
2018-05-16 23:50:55 +05:30
|
|
|
"version": "3.2.0",
|
2017-07-03 08:45:32 +05:30
|
|
|
"description": "A blazing fast & offline web playground",
|
2018-06-16 14:56:14 +05:30
|
|
|
"scripts": {
|
|
|
|
"start": "if-env NODE_ENV=production && npm run -s serve || npm run -s dev",
|
2018-06-16 15:25:26 +05:30
|
|
|
"build": "preact build --template src/index.html --no-prerender",
|
2018-06-16 14:56:14 +05:30
|
|
|
"serve": "preact build && preact serve",
|
|
|
|
"dev": "preact watch --template src/index.html --https --no-prerender",
|
2018-06-17 22:19:44 +05:30
|
|
|
"lint": "eslint src/*.js src/components/*.jsx",
|
2018-06-17 15:55:19 +05:30
|
|
|
"test": "jest ./tests",
|
|
|
|
"precommit": "lint-staged"
|
2018-06-16 14:56:14 +05:30
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "eslint-config-synacor"
|
|
|
|
},
|
|
|
|
"eslintIgnore": [
|
|
|
|
"build/*"
|
|
|
|
],
|
2018-06-17 15:55:19 +05:30
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,jsx,json,css,md}": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
2017-07-03 08:45:32 +05:30
|
|
|
"devDependencies": {
|
|
|
|
"babel-eslint": "^7.2.3",
|
2018-01-14 00:29:27 +05:30
|
|
|
"babel-minify": "^0.2.0",
|
2018-06-16 19:18:24 +05:30
|
|
|
"eslint": "^4.9.0",
|
2017-07-03 08:45:32 +05:30
|
|
|
"eslint-config-prettier": "^2.3.0",
|
2018-06-16 19:18:24 +05:30
|
|
|
"eslint-config-synacor": "^2.0.2",
|
2017-11-08 01:04:59 +05:30
|
|
|
"gulp": "^3.9.1",
|
2018-01-14 00:29:27 +05:30
|
|
|
"gulp-clean-css": "^3.9.2",
|
2018-06-19 10:49:26 +05:30
|
|
|
"gulp-concat": "^2.6.1",
|
2018-06-16 19:18:24 +05:30
|
|
|
"gulp-rename": "^1.3.0",
|
2018-01-14 00:29:27 +05:30
|
|
|
"gulp-uglify": "^3.0.0",
|
2017-11-06 23:55:21 +05:30
|
|
|
"gulp-useref": "^3.1.3",
|
2018-06-17 15:55:19 +05:30
|
|
|
"husky": "^0.14.3",
|
2018-06-16 19:18:24 +05:30
|
|
|
"identity-obj-proxy": "^3.0.0",
|
|
|
|
"if-env": "^1.0.0",
|
|
|
|
"jest": "^21.2.1",
|
2018-06-17 15:55:19 +05:30
|
|
|
"lint-staged": "^7.2.0",
|
2018-06-16 19:18:24 +05:30
|
|
|
"merge-stream": "^1.0.1",
|
|
|
|
"preact-cli": "^2.1.0",
|
|
|
|
"preact-render-spy": "^1.2.1",
|
2018-01-13 12:30:58 +05:30
|
|
|
"prettier": "^1.10.2",
|
2018-06-16 19:18:24 +05:30
|
|
|
"run-sequence": "^2.2.1",
|
2017-11-08 01:04:59 +05:30
|
|
|
"sw-precache": "^5.2.0"
|
2017-07-03 08:45:32 +05:30
|
|
|
},
|
2018-06-16 14:56:14 +05:30
|
|
|
"dependencies": {
|
|
|
|
"@emmetio/codemirror-plugin": "^0.5.4",
|
2018-06-16 23:31:14 +05:30
|
|
|
"code-blast-codemirror": "chinchang/code-blast-codemirror#web-maker",
|
2018-06-16 14:56:14 +05:30
|
|
|
"codemirror": "^5.37.0",
|
|
|
|
"copy-webpack-plugin": "^4.5.1",
|
|
|
|
"esprima": "^4.0.0",
|
|
|
|
"firebase": "^5.0.4",
|
|
|
|
"preact": "^8.2.6",
|
|
|
|
"preact-compat": "^3.17.0",
|
2018-06-17 17:31:01 +05:30
|
|
|
"preact-portal": "^1.1.3",
|
2018-06-16 14:56:14 +05:30
|
|
|
"preact-router": "^2.5.7",
|
2018-06-20 23:32:45 +05:30
|
|
|
"split.js": "1.3.4"
|
2018-06-16 14:56:14 +05:30
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"verbose": true,
|
|
|
|
"setupFiles": [
|
|
|
|
"<rootDir>/src/tests/__mocks__/browserMocks.js"
|
|
|
|
],
|
|
|
|
"testURL": "http://localhost:8080",
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"jsx"
|
|
|
|
],
|
|
|
|
"moduleDirectories": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"moduleNameMapper": {
|
|
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/tests/__mocks__/fileMock.js",
|
|
|
|
"\\.(css|less|scss)$": "identity-obj-proxy",
|
|
|
|
"^./style$": "identity-obj-proxy",
|
|
|
|
"^preact$": "<rootDir>/node_modules/preact/dist/preact.min.js",
|
|
|
|
"^react$": "preact-compat",
|
|
|
|
"^react-dom$": "preact-compat",
|
|
|
|
"^create-react-class$": "preact-compat/lib/create-react-class",
|
|
|
|
"^react-addons-css-transition-group$": "preact-css-transition-group"
|
|
|
|
}
|
2017-07-03 08:45:32 +05:30
|
|
|
},
|
2018-06-16 14:56:14 +05:30
|
|
|
"browserslist": [
|
|
|
|
"last 3 Chrome versions",
|
|
|
|
"last 3 Firefox versions"
|
|
|
|
],
|
2017-07-03 08:45:32 +05:30
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/chinchang/web-maker.git"
|
|
|
|
},
|
2018-06-16 19:18:24 +05:30
|
|
|
"keywords": [
|
|
|
|
"frontend",
|
|
|
|
"playground",
|
|
|
|
"web",
|
|
|
|
"editor"
|
|
|
|
],
|
2017-07-03 08:45:32 +05:30
|
|
|
"author": "Kushagra Gour",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/chinchang/web-maker/issues"
|
|
|
|
},
|
2018-06-16 14:56:14 +05:30
|
|
|
"homepage": "https://webmakerapp.com"
|
2017-07-03 08:45:32 +05:30
|
|
|
}
|