forked from nuxt/hackernews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"private": true,
"name": "nuxt-hn",
"description": "Nuxt Hacker News",
"version": "1.0.0",
"author": "Evan You <[email protected]>",
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Alexandre Chopin (@alexchopin)"
},
{
"name": "Pooya Parsa (@pi0)"
}
],
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"start": "nuxt start",
"dev-spa": "nuxt dev --spa",
"build-spa": "nuxt build --spa",
"start-spa": "nuxt start --spa",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"h3": "^0.2.10",
"nuxt": "^2.15.6",
"ohmyfetch": "^0.2.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/pwa": "3.3.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.10.0",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.3"
}
}