-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"name": "castor",
"version": "0.0.1",
"description": "WebUI for Gemini project",
"author": "Aries Cs",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "dotenv -e .env nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"@nuxtjs/apollo": "^4.0.0-rc10",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/component-cache": "^1.1.5",
"@nuxtjs/google-gtag": "^1.0.4",
"@nuxtjs/pwa": "^3.0.0-0",
"@nuxtjs/router": "^1.4.0",
"@nuxtjs/sitemap": "^1.3.0",
"apollo": "^2.18.0",
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.15",
"cross-env": "^5.2.0",
"dotenv-cli": "^2.0.1",
"graphql-tag": "^2.10.1",
"js-md5": "^0.7.3",
"koa": "^2.6.2",
"node-fetch": "^2.6.0",
"nuxt": "^2.0.0",
"nuxt-ssr-cache": "^1.5.0",
"nuxt-webfontloader": "^1.1.0"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-brands-svg-icons": "^5.10.1",
"@fortawesome/free-regular-svg-icons": "^5.10.1",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/vue-fontawesome": "^0.1.6",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"axios": "^0.19.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"jest": "^24.1.0",
"lodash": "^4.17.15",
"node-sass": "^4.12.0",
"nodemon": "^1.18.9",
"sass-loader": "^7.2.0",
"vue-jest": "^4.0.0-0",
"vue-lazyload": "^1.3.2"
}
}