trusted-setup-server/package.json

49 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-01-29 11:54:03 +01:00
{
"name": "trusted-setup-nuxt",
"version": "1.0.0",
"description": "My supreme Nuxt.js project",
"author": "Tornado team",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
2020-03-02 10:09:41 +01:00
"build": "cross-env NODE_ENV=production nuxt build",
2020-01-29 11:54:03 +01:00
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
2020-01-29 17:59:37 +01:00
"@open-wc/webpack-import-meta-loader": "^0.4.1",
2020-01-29 12:30:50 +01:00
"async-mutex": "^0.1.4",
"aws-sdk": "^2.610.0",
2020-02-29 12:22:45 +01:00
"blake2": "^4.0.0",
2020-01-29 12:30:50 +01:00
"body-parser": "^1.19.0",
2020-01-29 11:54:03 +01:00
"cross-env": "^5.2.0",
2020-01-29 12:30:50 +01:00
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
2020-01-29 11:54:03 +01:00
"express": "^4.16.4",
2020-01-29 12:30:50 +01:00
"express-session": "^1.17.0",
2020-01-29 17:59:37 +01:00
"multer": "^1.4.2",
2020-01-29 12:30:50 +01:00
"mysql2": "^2.1.0",
2020-04-10 12:18:24 +02:00
"nuxt": "^2.12.0",
2020-03-12 11:43:48 +01:00
"nuxt-buefy": "^0.3.24",
2020-02-06 15:24:04 +01:00
"oauth": "^0.9.15",
2020-02-25 15:13:09 +01:00
"sequelize": "^5.21.3",
2020-02-29 16:27:01 +01:00
"twitter": "^1.7.1",
"vue-highlightjs": "^1.3.3"
2020-01-29 11:54:03 +01:00
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^4.1.0",
2020-01-29 12:30:50 +01:00
"eslint-plugin-nuxt": ">=0.4.2",
2020-01-29 11:54:03 +01:00
"eslint-plugin-prettier": "^3.0.1",
2020-01-29 14:13:06 +01:00
"node-sass": "^4.13.1",
2020-01-29 12:30:50 +01:00
"nodemon": "^1.18.9",
2020-01-29 14:13:06 +01:00
"prettier": "^1.16.4",
2020-02-06 15:24:04 +01:00
"sass-loader": "^8.0.2",
"sqlite3": "^4.1.1"
2020-01-29 11:54:03 +01:00
}
2020-01-29 12:30:50 +01:00
}