-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "konnect-team-interview-frontend-exercise",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev:ui": "vite",
"dev:server": "npx --yes tsx --tsconfig './tsconfig.json' './server/index.ts'",
"build": "run-s lint stylelint typecheck build:app",
"build:app": "vite build -m production",
"preview": "vite preview",
"test": "cross-env FORCE_COLOR=1 vitest",
"test:open": "vitest --ui",
"lint": "eslint",
"lint:fix": "eslint --fix",
"stylelint": "stylelint './src/**/*.{css,scss,vue}'",
"stylelint:fix": "stylelint './src/**/*.{css,scss,vue}' --fix",
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
"commit": "cz"
},
"dependencies": {
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"express": "^4.18.3",
"pinia": "^2.1.7",
"vue": "^3.4.38",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@faker-js/faker": "^9.0.0",
"@kong/eslint-config-kong-ui": "^1.1.1",
"@tsconfig/node20": "^20.1.4",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/flat": "^5.0.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.11.30",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/ui": "^1.2.2",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"c8": "^10.1.2",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.10.0",
"jsdom": "^25.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-html": "^1.6.0",
"sass": "^1.70.0",
"stylelint": "^16.2.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-order": "^6.0.4",
"ts-node-dev": "^2.0.0",
"typescript": "~5.3.3",
"vite": "^5.0.11",
"vite-plugin-vue-devtools": "^7.0.27",
"vitest": "^1.2.2",
"vue-tsc": "^1.8.27"
},
"repository": {
"type": "git",
"url": "https://github.com/Kong/konnect-team-interview-frontend-exercise.git"
},
"author": {
"name": "Kong Inc.",
"url": "https://konghq.com/"
},
"license": "UNLICENSED",
"volta": {
"node": "20.11.1"
}
}