slate/package.json

87 lines
2.7 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-07-29 02:43:00 +03:00
"version": "0.0.7",
2020-08-07 03:05:06 +03:00
"engines": {
"node": ">=50.9"
},
"scripts": {
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 node . --unhandled-rejections=strict",
"start": "NODE_ENV=production node . --unhandled-rejections=strict",
2020-07-10 19:36:25 +03:00
"build-delete": "rm -rf .next && rm -rf dist/mac",
"build": "NODE_ENV=production next build",
"build-system": "rollup -c",
2020-08-03 00:09:55 +03:00
"electron-dev": "NODE_ENV=development electron ./electron/main.js ",
"electron-prod": "NODE_ENV=production next build && electron-builder --dir",
"scripts": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./scripts",
"www-setup-database": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./scripts setup-database",
"www-seed-database": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./scripts seed-database",
"www-drop-database": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./scripts drop-database"
},
"build": {
"appId": "com.slate",
"productName": "slate",
"mac": {
"icon": " build/icon.icns",
"asar": "false"
2020-07-09 02:44:42 +03:00
},
"extraMetadata": {
"main": "./electron/main.js"
}
},
"dependencies": {
2020-07-15 10:31:02 +03:00
"@babel/plugin-transform-runtime": "^7.10.4",
2020-07-05 00:24:34 +03:00
"@babel/preset-env": "^7.10.4",
2020-07-08 00:35:38 +03:00
"@babel/register": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/cache": "11.0.0-next.12",
"@emotion/core": "^10.0.28",
"@emotion/css": "11.0.0-next.12",
"@emotion/react": "11.0.0-next.12",
"@emotion/server": "11.0.0-next.12",
"@textile/hub": "^0.4.1",
"@textile/powergate-client": "0.2.0",
"@textile/threads-core": "^0.1.33",
"babel-plugin-module-resolver": "^4.0.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chart.js": "^2.9.3",
"chartkick": "^3.2.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"formidable": "^1.2.2",
"fs-extra": "^9.0.1",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.10",
2020-06-22 14:34:00 +03:00
"moment": "^2.27.0",
2020-06-22 14:30:31 +03:00
"next": "^9.4.4",
"pg": "^8.3.0",
"prismjs": "^1.20.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-draggable": "^4.4.3",
2020-07-25 23:49:05 +03:00
"react-focus-lock": "^2.4.1",
"react-tippy": "^1.3.4",
"regenerator-runtime": "^0.13.5",
"three": "^0.108.0",
"universal-cookie": "^4.0.3",
"uuid": "^8.0.0"
},
"devDependencies": {
2020-07-08 00:35:38 +03:00
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-json": "^4.1.0",
2020-07-03 18:32:36 +03:00
"@rollup/plugin-node-resolve": "^8.1.0",
"electron": "^9.0.5",
2020-07-03 18:32:36 +03:00
"electron-builder": "^22.7.0",
"rollup": "^2.18.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
2020-07-09 05:56:22 +03:00
"rollup-plugin-terser": "^6.1.0"
}
2020-02-19 09:30:47 +03:00
}