-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "your-blog",
"version": "1.0.0",
"description": "official your blog",
"author": "makiri",
"private": true,
"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",
"generate": "nuxt generate",
"precommit": "npm run lint",
"tsc": "tsc --showConfig",
"test": "jest",
"test:watch": "jest --watchAll",
"testc": "tsc -p tsconfig.json",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"post-update": "yarn upgrade --latest",
"clean": "rm -rf yarn.lock node_modules"
},
"dependencies": {
"@nuxtjs/pwa": "^3.0.0-beta.16",
"cross-env": "^5.2.0",
"nuxt": "^2.8.1",
"ts-node": "^8.3.0"
},
"devDependencies": {
"@nuxt/typescript": "^2.8.1",
"@nuxtjs/eslint-config": "^0.0.1",
"@nuxtjs/tailwindcss": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"csstype": "^2.6.5",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-nuxt": "^0.4.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"vue-property-decorator": "^8.2.1"
}
}