2017-07-03 08:45:32 +05:30
|
|
|
{
|
|
|
|
"name": "web-maker",
|
2019-07-18 15:07:27 +05:30
|
|
|
"version": "4.0.3",
|
2017-07-03 08:45:32 +05:30
|
|
|
"description": "A blazing fast & offline web playground",
|
2018-06-16 14:56:14 +05:30
|
|
|
"scripts": {
|
2019-07-15 21:50:41 +05:30
|
|
|
"start": "npm run -s dev",
|
2021-03-29 23:34:26 +05:30
|
|
|
"build": "preact build --template src/index.html --prerender false --sw false",
|
2018-06-16 14:56:14 +05:30
|
|
|
"serve": "preact build && preact serve",
|
2021-03-29 23:34:26 +05:30
|
|
|
"dev": "preact watch --template src/index.html --prerender false",
|
2019-03-14 23:32:10 +05:30
|
|
|
"serve-website": "cd packages/website; npm start",
|
|
|
|
"build-website": "cd packages/website; npm run build",
|
2018-06-22 20:19:19 +05:30
|
|
|
"lint": "eslint src",
|
2018-10-21 19:18:53 +05:30
|
|
|
"test": "jest",
|
2018-11-03 12:42:21 +05:30
|
|
|
"precommit": "lint-staged",
|
|
|
|
"add-locale": "lingui add-locale",
|
|
|
|
"extract": "lingui extract",
|
2021-03-29 17:38:11 +05:30
|
|
|
"compile": "lingui compile",
|
|
|
|
"release:dev": "gulp devRelease"
|
2018-06-16 14:56:14 +05:30
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "eslint-config-synacor"
|
|
|
|
},
|
|
|
|
"eslintIgnore": [
|
2018-06-22 20:19:19 +05:30
|
|
|
"build/*",
|
|
|
|
"src/lib/",
|
|
|
|
"src/tests/",
|
2018-06-23 09:46:37 +05:30
|
|
|
"src/CodeMirror.js",
|
|
|
|
"src/detached-window.js"
|
2018-06-16 14:56:14 +05:30
|
|
|
],
|
2018-06-17 15:55:19 +05:30
|
|
|
"lint-staged": {
|
2019-03-14 23:32:10 +05:30
|
|
|
"*.{js,jsx,json,css,md,html}": [
|
2018-07-03 10:07:30 +05:30
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2018-06-17 15:55:19 +05:30
|
|
|
},
|
2017-07-03 08:45:32 +05:30
|
|
|
"devDependencies": {
|
2019-07-15 21:50:41 +05:30
|
|
|
"@11ty/eleventy": "^0.7.1",
|
2019-07-16 21:52:38 +05:30
|
|
|
"@babel/core": "^7.5.4",
|
2019-07-16 17:17:13 +05:30
|
|
|
"@lingui/cli": "^2.8.3",
|
|
|
|
"@lingui/macro": "^2.8.3",
|
2019-07-16 21:52:38 +05:30
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2017-07-03 08:45:32 +05:30
|
|
|
"babel-eslint": "^7.2.3",
|
2018-01-14 00:29:27 +05:30
|
|
|
"babel-minify": "^0.2.0",
|
2019-07-16 18:59:37 +05:30
|
|
|
"babel-plugin-macros": "^2.6.1",
|
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",
|
2021-01-18 16:32:06 +05:30
|
|
|
"gulp": "^4.0.2",
|
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",
|
2019-07-16 21:52:38 +05:30
|
|
|
"gulp-connect": "^5.7.0",
|
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-21 01:01:48 +05:30
|
|
|
"gulp-zip": "^4.1.0",
|
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",
|
2019-07-17 14:35:31 +05:30
|
|
|
"jest": "^24.8.0",
|
|
|
|
"jest-cli": "^24.8.0",
|
2018-06-17 15:55:19 +05:30
|
|
|
"lint-staged": "^7.2.0",
|
2019-07-15 21:50:41 +05:30
|
|
|
"markdown-it": "^8.4.2",
|
|
|
|
"markdown-it-anchor": "^5.0.2",
|
2018-06-16 19:18:24 +05:30
|
|
|
"merge-stream": "^1.0.1",
|
2021-03-29 23:34:26 +05:30
|
|
|
"preact-cli": "^3.0.0",
|
2018-06-16 19:18:24 +05:30
|
|
|
"preact-render-spy": "^1.2.1",
|
2019-07-16 21:52:38 +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",
|
2019-07-16 18:59:37 +05:30
|
|
|
"@lingui/react": "^2.8.3",
|
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",
|
2018-11-16 23:30:37 +05:30
|
|
|
"firebase": "^5.5.8",
|
2018-06-30 11:07:55 +05:30
|
|
|
"jszip": "^3.1.5",
|
2021-03-29 23:34:26 +05:30
|
|
|
"preact": "^10.5.13",
|
2018-06-17 17:31:01 +05:30
|
|
|
"preact-portal": "^1.1.3",
|
2021-03-29 23:34:26 +05:30
|
|
|
"preact-render-to-string": "^5.1.4",
|
2021-01-18 16:32:06 +05:30
|
|
|
"preact-router": "^3.2.1",
|
|
|
|
"prettier": "^2.2.1",
|
2018-10-17 03:05:01 +05:30
|
|
|
"react-inspector": "^2.3.0",
|
2019-07-17 18:47:01 +05:30
|
|
|
"split.js": "^1.5.11"
|
2018-06-16 14:56:14 +05:30
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"verbose": true,
|
2018-07-03 10:07:30 +05:30
|
|
|
"setupFiles": [
|
2018-10-21 19:18:53 +05:30
|
|
|
"<rootDir>/tests/__mocks__/browserMocks.js"
|
|
|
|
],
|
|
|
|
"testRegex": "(/(__tests__|tests)/.*|(\\.|/)(test|spec))\\.jsx?$",
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"<rootDir>/tests/__mocks__/*"
|
2018-07-03 10:07:30 +05:30
|
|
|
],
|
2018-06-16 14:56:14 +05:30
|
|
|
"testURL": "http://localhost:8080",
|
2018-07-03 10:07:30 +05:30
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js",
|
|
|
|
"jsx"
|
|
|
|
],
|
|
|
|
"moduleDirectories": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
2018-06-16 14:56:14 +05:30
|
|
|
"moduleNameMapper": {
|
2018-10-21 19:18:53 +05:30
|
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tests/__mocks__/fileMock.js",
|
2018-06-16 14:56:14 +05:30
|
|
|
"\\.(css|less|scss)$": "identity-obj-proxy",
|
|
|
|
"^./style$": "identity-obj-proxy",
|
2019-07-17 14:35:31 +05:30
|
|
|
"^preact$": "<rootDir>/node_modules/preact/dist/preact.js",
|
2019-07-15 21:50:41 +05:30
|
|
|
"^react$": "preact/compat",
|
|
|
|
"^react-dom$": "preact/compat",
|
2018-06-16 14:56:14 +05:30
|
|
|
"^react-addons-css-transition-group$": "preact-css-transition-group"
|
|
|
|
}
|
2017-07-03 08:45:32 +05:30
|
|
|
},
|
2018-07-03 10:07:30 +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-07-03 10:07:30 +05:30
|
|
|
"keywords": [
|
|
|
|
"frontend",
|
|
|
|
"playground",
|
|
|
|
"web",
|
2018-09-29 19:39:59 +05:30
|
|
|
"editor",
|
|
|
|
"offline"
|
2018-07-03 10:07:30 +05:30
|
|
|
],
|
2017-07-03 08:45:32 +05:30
|
|
|
"author": "Kushagra Gour",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/chinchang/web-maker/issues"
|
|
|
|
},
|
2021-03-29 23:34:26 +05:30
|
|
|
"homepage": "https://webmaker.com"
|
2017-07-03 08:45:32 +05:30
|
|
|
}
|