-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "build-a-blog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"prepare": "husky install",
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"unit": "jest",
"e2e": "npm run generate && npm run start & wait-on http://localhost:3000 && wait-on cypress open",
"e2e:live": "cypress open",
"e2e:headless": "cypress run --headless",
"e2e:headless:record": "cypress run --headless --record --key $CYPRESS_RECORD_KEY"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/feed": "^2.0.0",
"@tailwindcss/typography": "^0.5.0",
"chance": "^1.1.8",
"core-js": "^3.15.1",
"dotenv": "^16.0.1",
"gray-matter": "^4.0.3",
"nuxt": "^2.15.8",
"nuxt-content-body-html": "^2.0.0",
"wait-on": "^6.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@nuxtjs/eslint-config": "^7.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^4.2.0",
"@vue/test-utils": "^1.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.0.5",
"cypress": "^9.2.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"husky": "^7.0.4",
"jest": "^27.0.5",
"lint-staged": "^10.5.4",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"tailwindcss": "^3.0.24",
"vue-jest": "^3.0.4"
},
"engines": {
"node": "16.13.0"
}
}