-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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": "thisdot",
"version": "1.0.0",
"description": "this dot interview project",
"author": "Temitope Adesoji @temitopeadesoji",
"private": true,
"scripts": {
"dev": "NUXT_PORT=40000 nuxt",
"build": "nuxt build",
"start": "nuxt start",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"generate": "nuxt generate"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"@nuxtjs/apollo": "^4.0.0-rc19",
"@nuxtjs/axios": "^5.11.0",
"@nuxtjs/style-resources": "^0.1.2",
"apollo-cache-inmemory": "^1.6.5",
"apollo-graphql": "^0.3.6",
"graphql-tag": "^2.10.1",
"npm": "^6.13.4",
"nuxt": "^2.11.0",
"vue": "^2.6.11",
"vue-loader": "^15.8.3"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^4.19.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^4.0.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"sass-loader": "^7.1.0",
"webpack": "^4.33.0"
}
}