-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.32 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lansolo.dev",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt -o",
"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",
"test": "jest",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e:run": "start-server-and-test start http://localhost:3000 cy:run",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 cy:open",
"cdySyncPosts": "cld sync --push ./cloudinary/posts lansolo.dev/posts"
},
"dependencies": {
"@nuxt/content": "^1.9.0",
"@nuxtjs/sitemap": "^2.4.0",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^9.8.6",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"focus-visible": "^5.2.0",
"focus-within-polyfill": "^5.1.0",
"javascript-retina-detect": "^0.1.4",
"loaders.css": "^0.1.2",
"nuxt": "^2.14.12",
"prism-themes": "^1.5.0",
"prismjs": "^1.23.0",
"v-click-outside": "^3.1.2",
"vue": "^2.6.12",
"vue-infinite-loading": "^2.4.5",
"vue-js-modal": "^2.0.0-rc.6",
"vue-vimeo-player": "^0.1.1"
},
"devDependencies": {
"@nuxt/types": "^2.14.7",
"@nuxtjs/date-fns": "^1.4.3",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/svg": "^0.1.12",
"@nuxtjs/tailwindcss": "^3.4.2",
"@vue/test-utils": "^1.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.0",
"cypress": "^6.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.5.0",
"postcss": "^7.0.35",
"postcss-css-variables": "^0.17.0",
"postcss-nested": "^4.2.3",
"prettier": "^2.1.2",
"start-server-and-test": "^1.11.7",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"vue-jest": "^3.0.4"
}
}