-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "nuxt-express-twitter-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for twitter apps ⚡",
"author": "Eleven-Lines <[email protected]>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt build && nuxt start",
"precommit": "npm run lint",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"cross-env": "^5.0.1",
"dotenv": "^6.0.0",
"express": "^4.15.3",
"express-session": "^1.15.6",
"node-sass": "^4.9.2",
"nuxt": "latest",
"oauth": "^0.9.15",
"pug-html-loader": "^1.1.5",
"sass-loader": "^7.0.3",
"source-map-support": "^0.4.15",
"twitter": "^1.7.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}