-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "collective-nuxt",
"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:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"storybook:dev": "nuxt storybook",
"storybook:build": "nuxt storybook build -o dist/storybook",
"test": "jest"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/pwa": "^3.3.5",
"@tailwindcss/typography": "0.4.1",
"core-js": "^3.18.1",
"nuxt": "^2.15.8"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/storybook": "^4.1.1",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.2.0",
"@vue/test-utils": "^1.2.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.2.4",
"eslint": "^7.32.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.18.0",
"jest": "^27.1.0",
"postcss": "^8.3.8",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"vue-jest": "^3.0.4"
}
}