-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "hackathon-spark",
"version": "0.2.0",
"dependencies": {
"@octokit/core": "^6.1.2",
"axios": "^1.7.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"nodemon": "^3.1.4",
"pinia": "^2.1.7",
"sanitize-html": "^2.13.0",
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.7",
"@rushstack/eslint-patch": "^1.8.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.6",
"concurrently": "^8.2.2",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"jsdom": "^24.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"vite": "^5.3.1",
"vitest": "^1.6.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
},
"imports": {
"#fixtures/*": "./fixtures/*",
"#utils/*": "./utils/*"
},
"main": "index.js",
"private": true,
"scripts": {
"build": "vite build",
"clean": "rimraf tmp/*",
"dev": "concurrently \"npm run start:client\" \"npm run start:server\"",
"format": "prettier --write '**/*.{vue,js,jsx,cjs,mjs}'",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"preview": "vite preview",
"start:client": "vite",
"start:server": "dotenv -e config/.env -- nodemon --watch api api/server.js",
"test:unit": "vitest",
"tool:fetch-github-release": "dotenv -e config/.env -- node tools/fetch-github-release.js",
"tool:fetch-jira-fix-version": "dotenv -e config/.env -- node tools/fetch-jira-fix-version.js",
"tool:fetch-jira-fix-versions": "dotenv -e config/.env -- node tools/fetch-jira-fix-versions.js",
"tool:fetch-jira-ticket": "dotenv -e config/.env -- node tools/fetch-jira-ticket.js",
"tool:run-copy-ai-workflow": "dotenv -e config/.env -- node tools/run-copy-ai-workflow.js",
"tool:validate-github": "dotenv -e config/.env -- node tools/validate-github.js",
"tool:validate-jira": "dotenv -e config/.env -- node tools/validate-jira.js"
},
"type": "module"
}