slate/package.json

98 lines
3.0 KiB
JSON
Raw Normal View History

2020-02-19 09:30:47 +03:00
{
2020-07-01 03:38:23 +03:00
"name": "slate",
"description": "",
"author": "slate",
2020-09-06 01:05:04 +03:00
"version": "1.0.0",
2020-08-19 09:18:37 +03:00
"license": "MIT",
2020-08-07 03:05:06 +03:00
"engines": {
2020-08-07 03:06:15 +03:00
"node": "14.7.0"
2020-08-07 03:05:06 +03:00
},
2021-02-12 15:31:58 +03:00
"lint-staged": {
"./**/*.{json,yaml,md}": "prettier --write",
"./**/*.{js,jsx}": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
2020-10-09 09:12:20 +03:00
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 node . --unhandled-rejections=strict --max-old-space-size=8192",
"start": "NODE_ENV=production node . --unhandled-rejections=strict --max-old-space-size=8192",
2021-02-12 17:56:31 +03:00
"lint": "eslint **/*.js",
"lint:fix": "npm run lint -- --fix",
"build": "NODE_ENV=production next build",
"build-system": "rollup -c",
2020-10-09 09:12:20 +03:00
"scripts": "NODE_TLS_REJECT_UNAUTHORIZED=0 node --max-old-space-size=8192 ./scripts",
"www-setup-database": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./scripts setup-database",
2020-12-24 02:43:25 +03:00
"www-seed-database": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./scripts seed-database",
"www-adjust-database": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./scripts adjust"
},
2020-08-19 10:18:29 +03:00
"repository": "filecoin-project/slate",
"dependencies": {
2021-02-16 19:08:27 +03:00
"@emotion/babel-preset-css-prop": "11.2.0",
"@emotion/react": "11.1.5",
2021-01-28 09:17:01 +03:00
"@glif/filecoin-number": "^1.1.0-beta.17",
2021-01-28 09:57:08 +03:00
"@slack/webhook": "^6.0.0",
2021-02-16 19:08:27 +03:00
"@textile/hub": "^6.0.2",
2021-01-01 06:44:35 +03:00
"babel-plugin-module-resolver": "^4.1.0",
"bcrypt": "^5.0.0",
2020-10-05 00:30:28 +03:00
"blurhash": "^1.1.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
2021-02-16 19:08:27 +03:00
"express-rate-limit": "^5.2.5",
2020-12-25 02:44:47 +03:00
"file-saver": "^2.0.5",
2021-01-28 10:01:03 +03:00
"fs-extra": "^9.1.0",
2020-08-17 08:15:56 +03:00
"heic2any": "0.0.3",
2020-10-26 01:07:14 +03:00
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
2021-02-16 19:08:27 +03:00
"jszip": "^3.6.0",
"knex": "^0.21.17",
"minisearch": "^3.0.2",
"moment": "^2.29.1",
2020-10-08 03:51:49 +03:00
"morgan": "^1.10.0",
2021-02-16 19:08:27 +03:00
"next": "^10.0.7",
"pg": "^8.5.1",
"prismjs": "^1.23.0",
2020-11-30 08:24:22 +03:00
"react": "^17.0.1",
2020-10-05 00:30:28 +03:00
"react-blurhash": "github:zeroxme/react-blurhash#master",
2020-11-30 08:24:22 +03:00
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
2020-11-20 21:20:39 +03:00
"remark-emoji": "^2.1.0",
2020-11-20 21:15:59 +03:00
"remark-gfm": "^1.0.0",
2020-11-20 18:17:02 +03:00
"remark-linkify-regex": "^1.0.0",
2020-11-19 16:37:04 +03:00
"remark-parse": "^9.0.0",
"remark-react": "^8.0.0",
2021-02-16 19:08:27 +03:00
"three": "^0.125.2",
2020-11-19 16:37:04 +03:00
"unified": "^9.2.0",
2021-01-28 10:13:08 +03:00
"universal-cookie": "^4.0.4",
2021-01-28 10:13:44 +03:00
"uuid": "^8.3.2",
2021-02-16 19:08:27 +03:00
"ws": "^7.4.3"
},
"devDependencies": {
2021-02-16 19:44:09 +03:00
"@babel/core": "^7.12.16",
2021-02-16 19:08:27 +03:00
"@babel/plugin-proposal-optional-chaining": "^7.12.16",
2021-02-16 19:44:09 +03:00
"@babel/preset-env": "^7.12.16",
"@babel/register": "^7.12.13",
2021-02-16 19:08:27 +03:00
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
2021-02-16 19:08:27 +03:00
"@rollup/plugin-node-resolve": "^11.2.0",
2021-02-12 15:31:58 +03:00
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
2021-02-12 14:08:22 +03:00
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
2021-02-16 19:08:27 +03:00
"rollup": "^2.39.0",
2020-11-26 04:41:19 +03:00
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0"
}
2020-02-19 09:30:47 +03:00
}