-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "event-to-twitter-list",
"version": "1.0.0",
"description": "My supreme Nuxt.js project",
"author": "takanakahiko",
"private": true,
"engines": {
"node": "11.9.0"
},
"scripts": {
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"heroku-postbuild": "npm run build",
"deploy": "git push heroku master"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"express-session": "^1.16.2",
"nuxt": "2.8.0",
"nuxt-buefy": "^0.3.2",
"passport": "^0.4.0",
"passport-twitter": "^1.0.4",
"ts-node": "^8.3.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"@nuxt/typescript": "^2.8.1",
"@nuxtjs/eslint-config": "0.0.1",
"@types/cheerio": "^0.22.11",
"@types/passport": "^1.0.0",
"@types/twitter": "^1.7.0",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"nodemon": "^1.18.9"
}
}