-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.41 KB
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
{
"name": "fae",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js"
},
"lint-staged": {
"*.{vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/content": "^1.8.1",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/device": "^1.2.7",
"@nuxtjs/gtm": "^2.3.2",
"@nuxtjs/sitemap": "^2.4.0",
"ansi-to-html": "^0.6.14",
"buefy": "^0.9.4",
"core-js": "^3.6.5",
"monaco-editor-vue": "^1.0.10",
"monaco-editor-webpack-plugin": "1.8.1",
"node-fetch": "^2.6.7",
"nuxt": "^2.14.5",
"nuxt-clipboard2": "^0.2.1",
"tmp": "^0.2.1",
"uuid": "^8.3.0",
"vue-sticky-directive": "^0.0.10"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@nuxt/test-utils": "^0.2.2",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^28.1.1",
"lint-staged": "^10.3.0",
"node-sass": "^4.14.1",
"prettier": "^2.1.1",
"sass-loader": "^10.0.2"
}
}