-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.04 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
{
"name": "amigadev-frontend",
"version": "1.0.0",
"description": "AmigaDev",
"author": "Marlon Beijer",
"private": true,
"scripts": {
"dev": "cross-env NUXT_HOST=0.0.0.0 NUXT_PORT=3000 NODE_ENV=development-local nuxt",
"dev-development": "cross-env NODE_ENV=development nuxt",
"dev-staging": "cross-env NODE_ENV=staging nuxt",
"dev-production": "cross-env NODE_ENV=production nuxt",
"build": "nuxt build",
"build-development": "cross-env NODE_ENV=development nuxt build",
"build-staging": "cross-env NODE_ENV=staging nuxt build",
"build-production": "cross-env NODE_ENV=production nuxt build",
"development": "cross-env NODE_ENV=development nuxt start",
"staging": "cross-env NODE_ENV=staging nuxt start",
"production": "cross-env NODE_ENV=production nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@nuxtjs/auth": ">=4.9.1",
"@nuxtjs/axios": ">=5.13.1",
"@nuxtjs/dotenv": ">=1.4.1",
"@nuxtjs/markdownit": ">=2.0.0",
"@nuxtjs/pwa": ">=3.3.5",
"bootstrap": ">=4.6.0",
"bootstrap-vue": ">=2.17.0",
"cross-env": ">=7.0.3",
"highlight.js": ">=10.6.0",
"jquery": "^3.6.0",
"markdown-it-highlightjs": ">=3.2.0",
"markdown-it-task-lists": ">=2.1.1",
"nuxt": "^3.4.3",
"nuxt-fontawesome": ">=0.4.0",
"velocity-animate": ">=1.5.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coffee-loader": "^3.0.0",
"coffeescript": ">=2.5.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-loader": ">=4.0.2",
"eslint-plugin-prettier": ">=3.3.1",
"eslint-plugin-vue": "^7.7.0",
"node-sass": ">=7.0.0",
"nodemon": ">=2.0.20",
"prettier": ">=2.2.1",
"pug": ">=3.0.1",
"pug-plain-loader": ">=1.1.0",
"sass-loader": ">=10.1.1"
}
}