-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.35 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.35 KB
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
{
"name": "hawk.so",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "yarn lint:js && yarn lint:css",
"lint:css": "stylelint \"src/**/*{.css,.vue}\" --fix",
"lint:js": "eslint src/ --fix",
"lint:errors": "eslint src/ --ext .js --ext .ts --ext .vue --quiet",
"serve:prod": "http-server ./dist --push-state -c-0",
"storybook": "vue-cli-service storybook:serve -p 6006 -c config/storybook -s ./public",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"get-schema": "get-graphql-schema http://api-staging.hawk.so/graphql > schema.graphql",
"cy:run": "cypress run",
"e2e:ci": "start-server-and-test serve 8080 cy:run"
},
"dependencies": {
"@codexteam/ui": "0.2.0-rc.4",
"@hawk.so/javascript": "3.3.0",
"@hawk.so/types": "^0.5.9",
"axios": "^1.12.2",
"codex-notifier": "^1.1.2",
"cssnano": "^7.1.1",
"fast-glob": "^3.3.3",
"highlight.js": "^11.11.1",
"http-server": "^14.1.1",
"install": "^0.13.0",
"lodash.mergewith": "^4.6.2",
"normalize.css": "^8.0.1",
"short-number": "^1.0.7",
"vue": "^3.5.22",
"vue-i18n": "11",
"vue-json-pretty": "^2.6.0",
"vue-router": "^4.5.1",
"vuex": "^4.1.0",
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@hawk.so/vite-plugin": "^1.0.6",
"@types/node": "^24.6.2",
"@types/postcss-nested-ancestors": "^3",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-typescript": "^14.6.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-codex": "^2.0.3",
"eslint-plugin-jsdoc": "^61.1.12",
"eslint-plugin-vue": "^10.5.1",
"postcss": "^8.5.6",
"postcss-apply": "^0.12.0",
"postcss-color-mod-function": "^4.1.1",
"postcss-import": "^16.1.1",
"postcss-mixins": "^12.1.2",
"postcss-nested": "^7.0.2",
"postcss-nested-ancestors": "^3.0.0",
"postcss-preset-env": "^10.4.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vite": "^7.1.9",
"vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^10.2.0"
},
"license": "BUSL-1.1",
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}