mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
87 lines
2.8 KiB
JSON
87 lines
2.8 KiB
JSON
{
|
|
"name": "@standardnotes/web",
|
|
"version": "3.21.0",
|
|
"license": "AGPL-3.0-or-later",
|
|
"main": "dist/app.js",
|
|
"author": "Standard Notes",
|
|
"private": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"start": "webpack-dev-server --config web.webpack.dev.js",
|
|
"watch": "webpack -w --config web.webpack.dev.js",
|
|
"clean": "rm -fr dist",
|
|
"prebuild": "yarn clean",
|
|
"build": "webpack --config web.webpack.prod.js && yarn tsc",
|
|
"lint": "eslint src/javascripts",
|
|
"tsc": "tsc --project tsconfig.json",
|
|
"test": "jest --config jest.config.js --coverage",
|
|
"postinstall": "yarn run ncu -loglevel verbose --packageFile package.json",
|
|
"upgrade:snjs": "ncu -u '@standardnotes/*' && yarn"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.9",
|
|
"@babel/plugin-transform-react-jsx": "^7.17.3",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/react": "^17.0.42",
|
|
"@types/react-dom": "^18.0.5",
|
|
"@types/wicg-file-system-access": "^2020.9.5",
|
|
"babel-loader": "^8.2.5",
|
|
"circular-dependency-plugin": "^5.2.2",
|
|
"css-loader": "^6.7.1",
|
|
"dotenv": "^16.0.0",
|
|
"eslint": "*",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-react": "^7.29.4",
|
|
"eslint-plugin-react-hooks": "^4.4.0",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^27.5.1",
|
|
"lint-staged": ">=12",
|
|
"mini-css-extract-plugin": "^2.6.0",
|
|
"node-sass": "^7.0.1",
|
|
"npm-check-updates": "^12.5.9",
|
|
"sass-loader": "^12.6.0",
|
|
"svg-jest": "^1.0.1",
|
|
"ts-jest": "^27.1.4",
|
|
"ts-loader": "^9.2.8",
|
|
"typescript": "*",
|
|
"webpack": "*",
|
|
"webpack-dev-server": "^4.8.1",
|
|
"webpack-merge": "^5.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@reach/alert": "^0.16.0",
|
|
"@reach/alert-dialog": "^0.16.2",
|
|
"@reach/checkbox": "^0.16.0",
|
|
"@reach/dialog": "^0.16.2",
|
|
"@reach/disclosure": "^0.16.2",
|
|
"@reach/listbox": "^0.16.2",
|
|
"@reach/tooltip": "^0.16.2",
|
|
"@reach/visually-hidden": "^0.16.0",
|
|
"@standardnotes/components": "1.9.0",
|
|
"@standardnotes/filepicker": "1.16.14",
|
|
"@standardnotes/icons": "^1.3.0",
|
|
"@standardnotes/services": "^1.13.14",
|
|
"@standardnotes/sncrypto-web": "1.10.1",
|
|
"@standardnotes/snjs": "^2.115.9",
|
|
"@standardnotes/styles": "^1.1.0",
|
|
"@standardnotes/toast": "^1.1.0",
|
|
"@zip.js/zip.js": "^2.4.10",
|
|
"mobx": "^6.5.0",
|
|
"mobx-react-lite": "^3.3.0",
|
|
"qrcode.react": "^3.0.1",
|
|
"react": "^18.1.0",
|
|
"react-dnd": "^16.0.1",
|
|
"react-dnd-html5-backend": "^16.0.1",
|
|
"react-dnd-touch-backend": "^16.0.1",
|
|
"react-dom": "^18.1.0"
|
|
},
|
|
"lint-staged": {
|
|
"app/**/*.{js,ts,jsx,tsx}": "eslint --cache --fix",
|
|
"app/**/*.{js,ts,jsx,tsx,css,md}": "prettier --write"
|
|
}
|
|
}
|