-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "news",
"version": "1.0.0",
"private": true,
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"browsers": [
">2%",
"last 1 Edge version",
"last 2 Safari version",
"last 1 Firefox version"
]
},
"loose": true
}
]
],
"plugins": [
[
"@babel/plugin-proposal-private-property-in-object",
{
"loose": true
}
]
]
},
"scripts": {
"dev": "GRAPHQL_URL=https://paragrapp-production.herokuapp.com/graphql nuxt",
"build": "nuxt build",
"buildStaging": "nuxt build",
"buildProduction": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"sb": "npx nuxt storybook",
"generate-types": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@types/vuelidate": "^0.7.14",
"apollo-cache-inmemory": "^1.6.6",
"core-js": "^3.8.3",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"node-sass": "^5.0.0",
"nuxt": "^2.14.12",
"nuxt-i18n": "^6.20.6",
"nuxt-property-decorator": "^2.9.1",
"sass-loader": "^10.1.1",
"vuelidate": "^0.7.6",
"vuelidate-property-decorators": "^1.0.28"
},
"devDependencies": {
"@babel/preset-env": "^7.14.1",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/typescript": "^1.22.1",
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@graphql-codegen/typescript-vue-apollo": "^2.3.5",
"@nuxt/types": "^2.14.12",
"@nuxt/typescript-build": "^2.0.4",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/style-resources": "^1.0.0",
"babel-eslint": "^10.1.0",
"babel-preset-vue": "^2.0.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"prettier": "^2.2.1"
}
}