mirror of
https://github.com/dnote/dnote
synced 2026-03-15 23:15:50 +01:00
50 lines
1.8 KiB
JSON
50 lines
1.8 KiB
JSON
{
|
|
"name": "dnote-extension",
|
|
"repository": "https://github.com/dnote/dnote",
|
|
"description": "Dnote browser extension for Chrome and Firefox",
|
|
"scripts": {
|
|
"clean": "TARGET=firefox gulp clean && TARGET=chrome gulp clean",
|
|
"build:chrome": "TARGET=chrome NODE_ENV=production concurrently webpack \"gulp build\"",
|
|
"build:firefox": "TARGET=firefox NODE_ENV=production concurrently webpack \"gulp build\"",
|
|
"package:chrome": "TARGET=chrome NODE_ENV=production gulp package",
|
|
"package:firefox": "TARGET=firefox NODE_ENV=production gulp package",
|
|
"watch:chrome": "TARGET=chrome NODE_ENV=development concurrently \"webpack --watch\" \"gulp watch\" ",
|
|
"watch:firefox": "TARGET=firefox NODE_ENV=development concurrently \"webpack --watch\" \"gulp watch\" ",
|
|
"lint": "../node_modules/.bin/eslint ./src --ext .ts,.tsx,.js",
|
|
"lint:fix": "../node_modules/.bin/eslint ./src --fix --ext .ts,.tsx,.js"
|
|
},
|
|
"author": "Monomax Software Pty Ltd",
|
|
"license": "GPL-3.0-or-later",
|
|
"version": "2.0.0",
|
|
"dependencies": {
|
|
"classnames": "^2.2.5",
|
|
"lodash": "^4.17.20",
|
|
"qs": "^6.9.4",
|
|
"react": "^16.12.0",
|
|
"react-dom": "^16.12.0",
|
|
"react-redux": "^7.2.1",
|
|
"react-select": "^3.1.0",
|
|
"redux": "^4.0.4",
|
|
"redux-logger": "^3.0.6",
|
|
"redux-thunk": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.11.4",
|
|
"@babel/preset-env": "^7.11.0",
|
|
"@types/react": "^16.9.46",
|
|
"@types/react-dom": "^16.9.8",
|
|
"concurrently": "^5.3.0",
|
|
"del": "^5.0.0",
|
|
"gulp": "^4.0.0",
|
|
"gulp-if": "^3.0.0",
|
|
"gulp-imagemin": "^6.2.0",
|
|
"gulp-livereload": "^4.0.2",
|
|
"gulp-replace": "^1.0.0",
|
|
"gulp-zip": "^5.0.2",
|
|
"prettier": "^1.19.1",
|
|
"ts-loader": "^6.2.2",
|
|
"typescript": "^3.9.7",
|
|
"webpack": "^4.44.1",
|
|
"webpack-cli": "^3.3.12"
|
|
}
|
|
}
|