-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.95 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "adrianjost-cv",
"version": "3.1.0",
"description": "Personal Homepage of Adrian Jost. You can find most of his project work and his contact information. If you are impressed you could even offer him a nice Job. ;) He would be very happy to hear from you!",
"author": "Adrian Jost",
"license": "MIT",
"scripts": {
"dev:nuxt": "nuxt",
"dev:functions": "cd functions && npm run serve",
"dev": "run-p dev:*",
"analyze": "nuxt build --analyze",
"build": "cross-env NODE_ENV=production nuxt generate",
"deploy": "npm run lint && npm run build && firebase deploy",
"test:build": "start-test test:build:mockserver http://localhost:5001 test:build:nuxt",
"test:build:mockserver": "mockserver -p 5001 -m ./test/mocks",
"test:build:nuxt": "cross-env API_URL=http://localhost:5001 npm run build",
"test:snapshot:serve": "npx serve --no-clipboard --listen 4001 dist",
"test:snapshot:jest": "jest --config ./test/snapshot/jest.config.js --runInBand",
"test:snapshot": "start-test test:snapshot:serve http://localhost:4001 test:snapshot:jest",
"test": "npm run test:build && npm run test:snapshot",
"lint:eslint": "eslint --fix",
"lint:stylelint": "stylelint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"lint:all:eslint": "npm run lint:eslint -- --ext .js,.vue .",
"lint:all:stylelint": "npm run lint:stylelint \"src/**/*.{vue,sass,scss,css}\"",
"lint:all:prettier": "npm run lint:prettier \"**/*.{js,json,css,scss,vue,html}\"",
"lint": "run-s lint:all:*"
},
"gitHooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
},
"dependencies": {
"@johmun/vue-tags-input": "^2.1.0",
"autosize": "^6.0.1",
"base64-img": "^1.0.4",
"fetch-retry": "^6.0.0",
"firebase": "^10.14.0",
"firebaseui": "^6.1.0",
"isomorphic-unfetch": "^4.0.2",
"nuxt": "^2.17.3",
"postcss": "^8.4.49",
"v-lazy-image": "^2.1.1",
"vue-pose": "^0.5.1",
"vuewordcloud": "^18.7.12"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/runtime-corejs3": "^7.26.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"core-js": "^3.39.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue": "^8.7.1",
"firebase-tools": "^13.27.0",
"imagemin-lint-staged": "^0.5.1",
"jest": "^27.5.1",
"jest-environment-node": "^27.5.1",
"jest-playwright-preset": "^1.7.2",
"lint-staged": "^15.3.0",
"mockserver": "^3.1.1",
"npm-run-all": "^4.1.5",
"playwright-chromium": "^1.49.1",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"sass-loader": "^10.2.1",
"serve": "^14.2.4",
"start-server-and-test": "^2.0.9",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^2.6.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.21.0",
"vue": "^2.6.14",
"webpack": "^4.47.0",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=20"
}
}