This repository has been archived by the owner on Oct 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2 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
{
"name": "nuxt-starter-prismic",
"version": "1.0.0",
"author": "<skyward-digital>",
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi generate",
"start": "nuxi preview",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"lint:check": "eslint '{components,context,pages,slices,utils}/**/*.js'",
"format": "prettier --write \"{.slicemachine,.storybook,components,context,customtypes,docs,pages,slices,styles,utils}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"format:check": "prettier --check '{.slicemachine,.storybook,components,context,,customtypes,docs,pages,slices,styles,utils}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}'",
"sm": "start-slicemachine",
"storybook": "nuxt storybook",
"build-storybook": "nuxt storybook build",
"kill": "kill $(lsof -ti:3000,8888,9999)"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/prismic": "^1.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.0",
"core-js": "^3.19.3",
"nuxt-edge": "latest",
"nuxt-sm": "^0.0.9",
"tailwindcss": "^3.0.9",
"vue": "^2.6.14",
"vue-server-renderer": "^2.6.14",
"vue-slicezone": "^0.1.0",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@nuxt/bridge": "npm:@nuxt/bridge-edge",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/storybook": "3.3.1",
"@nuxtjs/tailwindcss": "^4.2.1",
"@storybook/vue": "6.1.21",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^8.2.0",
"postcss": "^8.4.4",
"prettier": "^2.5.1",
"slice-machine-ui": "^0.1.2",
"vue-loader": "15.9.6"
}
}