-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "retrobox.web",
"version": "1.0.0",
"description": "The retrobox website made with nuxt.js",
"author": "Thingmill <contact@thingmill.fr>",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"serve": "npm run dev",
"build": "cross-env ENV_FILE=local nuxt build",
"start": "cross-env PORT=3456 NODE_ENV=production ENV_FILE=local node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"locales": "node ./match-locale.js"
},
"dependencies": {
"@nuxtjs/axios": "^5.0.0",
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/proxy": "^1.3.3",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sentry": "^4.0.2",
"@nuxtjs/sitemap": "^1.2.0",
"accept-language-parser": "^1.5.0",
"animate.css": "^3.7.2",
"aos": "^2.3.4",
"axios": "^0.19.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"html-loader": "^0.5.5",
"jwt-decode": "^2.2.0",
"lefuturiste-vue-directive-tooltip": "0.0.2",
"lodash": "^4.17.15",
"markdown-loader": "^5.0.0",
"moment": "^2.24.0",
"nuxt": "2.12.2",
"nuxt-env": "0.0.4",
"nuxt-i18n": "^6.0.0",
"scrollreveal": "^4.0.5",
"socket.io-client": "^2.2.0",
"v-tooltip": "^2.0.0-rc.33",
"vue": "^2.6.10",
"vue-apitator": "^0.0.8",
"vue-blur-loader": "^1.0.1",
"vue-cookie": "^1.1.4",
"vue-good-table": "^2.16.5",
"vue-hljs": "^1.1.2",
"vue-i18n": "^8.15.0",
"vue-js-modal": "^1.3.27",
"vue-lazyload": "^1.3.1",
"vue-recaptcha": "^1.1.1",
"vue-scrollto": "^2.13.0",
"vue2-transitions": "^0.2.3",
"vuex-persistedstate": "^2.5.4",
"xterm": "^4.3.0",
"xterm-addon-fit": "^0.3.0"
},
"devDependencies": {
"all-object-keys": "^1.1.1",
"autoprefixer": "^8.6.4",
"babel-eslint": "^8.2.1",
"colors": "^1.3.3",
"cross-env": "^7.0.2",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-vue": "^4.0.0",
"marked": "^0.7.0",
"nodemon": "^1.11.0",
"sass": "^1.49.8",
"sass-loader": "10",
"tailwindcss": "~0.6.6"
}
}